J
Jamie
I need the number 1,802,224 to be pulled from anothe rworksheet and be shown
as 1,802. as the result.
as 1,802. as the result.
and be shown as 1,802. as the result.
Assuming that number is in cell A1 on the other sheet, this maybe....
=INT(OtherSheetName!A1/1000)
This doesn't round. It truncates to the nearest integer less than or
equal to the original value. If you're going to use a function, use
the correct one.
=ROUND(OtherSheetName!A1,-3)
The subject line would tend to indicate "round"...<g>