Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim strCalc as String
strCalc = Replace(text1.text,".",",")
...your code to calculate using strCalc
Function Standardise(ByVal [b]WhatToStandardise[/b] As String) As String
Standardise = Replace(WhatToStandardise, ",", ".")
End Function
Sub Standardise_All()
For Each ctrl In UserForm1.Controls
If uCase(TypeName(ctrl)) = "TEXTBOX" Then
ctrl.Value = CDbl([b]Standardise(ctrl.Text)[/b])
End If
Next
End Sub