FDQM mapping script
If varValues(19) = "50" Then
Result = "564000"
Else
Result = "514600"
End If
Our source UD1 has now changed to a format of #####.## . I need to use a wildcard because there are too many combinations to list each. I tried to use
If varValues(19) = "*.50" Then
Result = "564000"
Else
Result = "514600"
End If
But it didn’t match the *.50 to anything. It loaded everything to the Else.