Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
I am using this formula in cell D1 =IF($A1="","",WORKDAY(B1,C1)) B_1 has Date and C-1 has credit days value like 10 and i want Due Date in D_1 cell but problam is that whenever B_1 doesn't have any value then #VALUE! error is coming out which i really don't want ! Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way to do it is to use an IF statement:
=IF(ISERROR(your_formula_here),"",your_formula_her e) Plain English translation: if the formula returns an error, return a ""; if it returns a non-error result, return that result. Dave O Eschew Obfuscation |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dear Dave O,
Thanks for your reply, but sorry not understant well, you means formula would be is as under ? =IF(ISERROR(WORKDAY(B1,C1),"",WORKDAY(B1,C1)) If so then this is not working ! "Dave O" wrote: One way to do it is to use an IF statement: =IF(ISERROR(your_formula_here),"",your_formula_her e) Plain English translation: if the formula returns an error, return a ""; if it returns a non-error result, return that result. Dave O Eschew Obfuscation |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You forgot the closing parenthesis for ISERROR. Dave means:
=IF(ISERROR(WORKDAY(B1,C1)),"",WORKDAY(B1,C1)) Regards, Fred "Tufail" wrote in message ... Dear Dave O, Thanks for your reply, but sorry not understant well, you means formula would be is as under ? =IF(ISERROR(WORKDAY(B1,C1),"",WORKDAY(B1,C1)) If so then this is not working ! "Dave O" wrote: One way to do it is to use an IF statement: =IF(ISERROR(your_formula_here),"",your_formula_her e) Plain English translation: if the formula returns an error, return a ""; if it returns a non-error result, return that result. Dave O Eschew Obfuscation |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oh Yes ! You are right and now it's working.
Thank you very much. "Fred Smith" wrote: You forgot the closing parenthesis for ISERROR. Dave means: =IF(ISERROR(WORKDAY(B1,C1)),"",WORKDAY(B1,C1)) Regards, Fred "Tufail" wrote in message ... Dear Dave O, Thanks for your reply, but sorry not understant well, you means formula would be is as under ? =IF(ISERROR(WORKDAY(B1,C1),"",WORKDAY(B1,C1)) If so then this is not working ! "Dave O" wrote: One way to do it is to use an IF statement: =IF(ISERROR(your_formula_here),"",your_formula_her e) Plain English translation: if the formula returns an error, return a ""; if it returns a non-error result, return that result. Dave O Eschew Obfuscation |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
WORKDAY | Excel Worksheet Functions | |||
Workday Formula? | Excel Discussion (Misc queries) | |||
27-May-2007 is a WORKDAY? | Excel Worksheet Functions | |||
WORKDAY() and probably more | New Users to Excel | |||
Workday Help | Excel Discussion (Misc queries) |