I want to remove everything before the word 'of'' in the below table
value |
Making of debt |
taking of sell |
cooking of the meal |
Output:
value |
debt |
sell |
the meal |
@Felipe_Ribeir0 @BS_THE_ANALYST Can I do it using formula tool ?
Yes, use the formula called REGEX_Replace([value], ".*of\s*(.*)", "$1")... see picture below
Hi, @Sshasnk
Please see the below.
TRIM(Replace(Substring([Desc],FindString([Desc], "of")),"of",''))
Please mark it as an acceptable solution if it works for you.
Cheers!