I've been looking for a formatting solution to do the opposite of what most try to do.Turning shortened numbers like 7.51M into 7510000 or 7,510,000.Or in thousands: 135.6K into 135600.
Update:
Found this statement which basically works, but I'd rather do it with formatting if possible.
=if((right(H6,1))="K",(value(left(H6,(len(H6))-1)))*1000,if((right(H6,1))="M",(value(left(H6,(len(H6))-1)))*1000000,if((right(H6,1))="B",(value(left(H6,(len(H6))-1)))*1000000000,H6)))