turning numbers into other numbers

D

Dino Thomas

I have some sheets within a spreadsheet that are grabbing
data from other cells on other sheets. The cells they are
getting the numbers from are in the following format
{91.52} (in millions)....so that number equals
91,520,000.....how can i get the celll that is grabbing
that number (91.52) to show the full number (91,520,000)
in the cell that is pulling in that value
 
R

Rob

Dino,

Assuming cell A1 on Sheet1 contains (91.52), then =+Sheet1!A1*1000000 in
another sheet will return what you refer to as the "full number".

Rob
 
Top