Jul 27, 2020 02:45 PM
I have a field with a value "feather29sum"cxa. I need to extract the feather29sum only and ignore everything else. Can someone please help with this formula?
Solved! Go to Solution.
Jul 27, 2020 08:57 PM
This should work:
TRIM(LEFT(SUBSTITUTE({Field Name}, '"', REPT(" ", 25)), 50))
Breakdown, in to out:
Jul 27, 2020 08:57 PM
This should work:
TRIM(LEFT(SUBSTITUTE({Field Name}, '"', REPT(" ", 25)), 50))
Breakdown, in to out:
Jul 28, 2020 07:34 AM
Thanks Justin, this is exactly what I needed.