Jerry said:
Subject: How do you convert $100M into a whole number?
As above assuming it is possible. Have tried copy and special paste without
much luck so far.
[Please repeat the question in the body of the posting.]
Do you mean that you have the text "$100M"? If so, does the following
meet your needs, assuming that A1 contains the text to convert:
1000000*mid(A1, 2, len(A1)-2)
More robust:
if(isnumber(A1), A1, if(right(A1,1)="M", 1000000*mid(A1,2,len(A1)-2),
if(right(A1,1)="K", 1000*mid(A1,2,len(A1)-2), 1*right(A1,len(A1)-1))))