how do I convert numbers to the nearest 1000

F

Fred Smith

One way is to use MRound:

=Mround(a1,1000)

This requires the Analysis ToolPak to be installed.

Or:

=int(a1/1000)*1000
 
Top