B
Bobby
How can I find in VBA the maximum value in a string. I.E:
Sub test()
Dim x As Variant
Dim y As String
Set x = "100 200 300 400"
y = WorksheetFunction.Max(x)
End Sub
This will not work!
Thank's for the help!
Sub test()
Dim x As Variant
Dim y As String
Set x = "100 200 300 400"
y = WorksheetFunction.Max(x)
End Sub
This will not work!
Thank's for the help!