PDA

View Full Version : [SOLVED:] Remove symbol



kmlartigue
08-10-2017, 12:56 PM
I copy and paste market values from a site into excel and it pastes the a space and $ as part of the value. Ex: _$834,570. Is there a formula I can write to remove the first two characters from left?

mdmackillop
08-10-2017, 01:38 PM
If the prefix is there by formatting then change the format to General, otherwise
=RIGHT(A1,LEN(A1)-2)*1

kmlartigue
08-11-2017, 09:22 AM
That works great, thank you for the help!