Question : Access - field to number

Dear Experts,

Can you please have a look the attached picture, I have a table where the quantities are in Text format and my target would be to convert those to Number with some formula in a query.

So basically the thousand separator is the "," and the decimal is the ".", and also can be negative values.

thanks your help in advance
Attachments:
 
The sample containing the decimal and thousand separators
The sample containing the decimal and thousand separators
 

Answer : Access - field to number

Dim mcServices As New Management.ManagementClass("Win32_Service")
        Dim moService As Management.ManagementObject
        For Each moService In mcServices.GetInstances()
            'Dim srvArray As String()
            'srvArray =
            If moService.GetPropertyValue("Name").ToString() = "MyServiceName" Then
                MessageBox.Show(moService.GetPropertyValue("StartName").ToString())
            End If
        Next
Random Solutions  
 
programming4us programming4us