Date Format

  • Thread starter Thread starter Craig
  • Start date Start date
C

Craig

I have some external data which is imported into excel and might contain
full stops in dates and Excel doesn't seem recognise this very well, is
there a way to force Excel to?

01/01/2005 05/01/2005 =NETWORKDAYS(B4,C4) (show as "3", great)
01.01.2005 05.01.2005 =NETWORKDAYS(B5,C5) (show as "#VALUE!")

I'd be grateful for any help.
Craig
 
Hi Craig

try
=NETWORKDAYS(SUBSTITUTE(B5,".","/"),SUBSTITUTE(C5,".","/"))
 
I'd change the dots to slashes so that excel will see them as dates.

Select your range of cells (don't select too much!)
edit|replace
what: . (dot)
with: / (slash)
replace all

Then your formula will be ok.
 

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