With 2 separate character strings of
100038_ko and 244p_po how do I strip off the _ko and _po from the respective strings?
100038_ko and 244p_po how do I strip off the _ko and _po from the respective strings?
myString = Left(myString, Len(myString) - 3)
TrimmedField: IIF(InStr([YourFieldName], "_") > 0, Left([YourFieldName], InStr([YourFieldName], "_") - 1), [YourFieldName])
Comment