Reputation: 3
I am in a pickle and need some help extracting portion of a string in a google sheet cell.
SM - Lead - LINE ITEM GOES HERE (ABC) - Jan $ 11.75 3,515.00 $ 41,301.25
I am looking to extract the amount after the second dollar ($) sign.
Thank you!
Upvotes: 0
Views: 119
Reputation: 27252
Assuming the second dollar sign is always at the end of the string, you can also try
=regexextract(A2, "[^$\s]+$")
Upvotes: 1
Reputation: 1221
Assuming that the spaces and the format will be the same, you can try the formula below:
=REGEXEXTRACT(A1,"\$ \S+ \S+ \$ (\S+)")
Upvotes: 0