concatenate number format issue

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there:

cell d21 is formatted to currency/zero decimals and contains the value $4,104

cell k10 is formatted to general

in cell k10 I put the following formula
=concatenate("<",d21)
the result in cell k10 is <4103.559020548

I would like to see just <4104

Can someone help? Thanks very much
 
In cell K10, you can use the TEXT function to format the number:

="<" & TEXT(D21,"0")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top