Extract data from a cell before a comma ...

Ivooory Posted messages 32 Status Membre -  
Ivooory Posted messages 32 Status Membre -
Hello,

I know the RIGHT and LEFT formulas to extract and copy the first or last data from a cell.
But I'm looking for the formula to extract the data from the beginning of the cell up to the following comma or possibly a slash.

Configuration: Windows / Chrome 52.0.2743.116

8 réponses

Vaucluse Posted messages 27336 Registration date   Status Contributeur Last intervention   6 453
 
Hello

=LEFT(A1;FIND(",";A1)-1)

and if you want to convert the result to a number:

=LEFT(A1;FIND(",";A1)-1)*1

thx

--
The quality of the answer mainly depends on the clarity of the question, thank you!
8