Hi Alteryx Champions,
Need help in extracting the numbers that are coming at the end. In the attached screen-shot, I would require -19,911 and 453,590 to come out into a separate column similarly 01/04/22 from the below string:
Date entered..............................................................01/04/22
Solved! Go to Solution.
Try Regex tool or Formula's Regex_Replace function, with "^.*(\d{2}/\d{2}/\d{2}$)".
Based on the image, something like this may work:
.*\s(.*?\d.*?$)
Thank you that worked out
For your reference, Regex Cheat Seat here