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 answers
  1. Aug 8, 2024, 9:49 PM

    Hi @Nick Salpas ,

     

    Try this

     

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