Hi,
Can one of yo experts give me a way to remove everything after the 2nd _ in the following?
DER_FEX_HEDG
DER_FEX_INVH
DER_FEX_GEHR
So for the first row I want DER_FEX
Solved! Go to Solution.
This should work for you:
REGEX_Replace([Info], '(.*)_.*', '$1')
Brilliant, this solves the problem nicely!
