Skip to main content

Hello Community,

 

I am trying to create a formula that will return the number after the " ; " in the following example strings:

 

Jim Simpson;25

Would return 25 as a number.

 

Matthew-Bennett J Lewis;100

Would return 100 as a number.

 

Can anyone help me out with this?

 

Thank you!

2 réponses
  1. 8 août 2024, 21:49

    Hi @Nick Salpas ,

     

    Try this

     

    RIGHT( field__c ,LEN(field__c) - FIND(';', field__c ))
0/9000