Jul 11, 2024 06:52 AM
Hello, I have a lot of text in a cell LONG TEXT (I extract a little bit of this), I need to create a new Formula column to extra only the telephone number, what can i do?
Buonasera, Chiedevo disponibilità per parziale permuta con mia autovettura MASERATI 4200 SPYDER del 2002 ASI - TARGA ORO 37.000 Km circa colore Argento scuro capotte e interni BLU. Macchina sempre tagliandata da rete ufficiale kilometri REALI io sono il 3 proprietario. La settimana scorsa ho inserito annuncio su AUTOSCOUT 24 .. chiamano in tanti ma tutti senza soldi.. Cordiali saluti
Rispondi ora:
MARCO PxxxxNI
E-Mail: praxxxxxx@gmail.com
Tel: 339xxxxx00
===Veicolo======================================================
Guarda l'annuncio:
Thank you very much!
Solved! Go to Solution.
Jul 11, 2024 07:26 AM
Try:
REGEX_EXTRACT({Notes}, "Tel:\\s*(.*)")
Jul 11, 2024 07:26 AM
Jul 11, 2024 10:40 AM
Wonderful!! Thank you very much!!!
Jul 12, 2024 12:40 AM
I've another extraction to do, how can i exctrat only "Porsche" from this?
AutoScout24.it - Sell-ID: 2120039622. Richiesta informazioni Porsche Macan € 85.900,- Offerta n.: 20720389
Jul 13, 2024 02:07 AM
Hmm, could you provide 5 examples of text where you want to extract "Porsche" please? With that I can attempt to identify a pattern to do the extraction!
Jul 13, 2024 02:26 AM
Another example:
AutoScout24.it - Sell-ID: 35738. Richiesta informazioni Volkswagen T-Cross € 29.900,- Offerta n.: 20503101
Here I want to extract "Volkswagen"
=======
AutoScout24.it - Sell-ID: 2120039622. Richiesta informazioni & Permuta MINI One € 20.900,- Offerta n.: 20466122
Here I want to extract "MINI"
Jul 13, 2024 03:38 AM
Thanks! Try this:
LEFT(
SUBSTITUTE(
SUBSTITUTE(
Name,
LEFT(
Name,
FIND(
'informazioni', Name
) + 12
),
''
),
"& Permuta ",
""
),
FIND(
' ',
SUBSTITUTE(
SUBSTITUTE(
Name,
LEFT(
Name,
FIND(
'informazioni', Name
) + 12
),
''
),
"& Permuta ",
""
)
)
)