=TODAY()

  • Thread starter Thread starter Craig Petersen via OfficeKB.com
  • Start date Start date
C

Craig Petersen via OfficeKB.com

The date is comming out wrong

name.xls Print Date: 38351

I want


name.xls Print Date: 12/30/04


=MID(CELL("filename"),SEARCH("[",CELL("filename"))+1,SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-1)&" Print Date: "&TODAY()


Thank you for any help you can give
Craig Petersen
 
Hi
use:
=MID(CELL("filename"),SEARCH("[",CELL("filename"))+1,SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-1)&"
Print Date: "&TEXT(TODAY(),"MM/DD/YY")
 
text(today(),"mm/dd/yy")

--
Don Guillett
SalesAid Software
(e-mail address removed)
Craig Petersen via OfficeKB.com said:
The date is comming out wrong

name.xls Print Date: 38351

I want


name.xls Print Date: 12/30/04
=MID(CELL("filename"),SEARCH("[",CELL("filename"))+1,SEARCH("]",CELL("filena
me"))-SEARCH("[",CELL("filename"))-1)&" Print Date: "&TODAY()
 
One way

=MID(CELL("filename",A1),SEARCH("[",CELL("filename",A1))+1,SEARCH("]",CELL("filename",A1))-SEARCH("[",CELL("filename",A1))-1)&"
Print Date: "&TEXT(TODAY(),"mm/dd/yy")


Regards,

Peo Sjoblom
 

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