round thousands

  • Thread starter Thread starter shank
  • Start date Start date
S

shank

How do I make (=b4*b5) = $1,250,456.23 look like $1,250K ...?

I want to just whack the end off and show the thousands.

thanks
 
How do I make (=b4*b5) = $1,250,456.23 look like $1,250K ...?
I want to just whack the end off and show the thousands.

"Whack the end off" suggests truncating (aka rounding down). So:

="$" & trunc(b4*b5/1000,0) & "K"

Format with right alignment, if that is what you want.
 
Back
Top