Jun 04, 2019 03:08 PM
I have this numbers:
9612804582458251440721
9612804512755470468057
9612804512755470468088
9612804512755470468125,9612804512755470468132
9612804582458251441063
9612804512755470468217
I want to grab in a new column all number’s BEFORE the “,”
How can I do it?
Jun 04, 2019 04:20 PM
Hi there! This formula should do it…
LEFT({Field Name}, FIND(",", {Field Name}) - 1)
Jun 04, 2019 04:41 PM
Tanks for answering
But now it only shows up IF there is a “,”
The one with a “,” is blank
Please look on this Image
Jun 04, 2019 04:50 PM
Try
LEFT(
{Field Name},
FIND(
',',
{Field Name}&','
)-1
)
That concatenates {Field Name}
with a trailing ','
so all fields will match the FIND()
criteria.
Empty fields will cancel out with FIND(',',{Field Name}&',')-1
equal to 0
.
Jun 04, 2019 05:06 PM
Jun 04, 2019 05:12 PM
Because I put the &','
in the wrong place. :blush:
Try the edited formula in my now-corrected reply, above.
Jun 04, 2019 05:25 PM
Thank you very much, now its good