Formula help again

amna77

Active Member
Joined
May 9, 2002
Messages
251
I have this following formula, can some one please help me modify this.
This formula looks in column AC and adds 10 working days in that date, but if in column C value = "Assy", then it does not count.

But is it possible when I have "Assy" in column C, then i want to see "N/A" in the cell, other wise add 10 working days to that date.


=IF(ISERROR(AC6/AC6)=TRUE,"",IF(C6="Assy",AC6,WORKDAY(AC6,(10))))


Thanks in advance
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
replace:

=IF(ISERROR(AC6/AC6)=TRUE,"",IF(C6="Assy",AC6,WORKDAY(AC6,(10))))

with:

=IF(ISERROR(AC6/AC6)=TRUE,"",IF(C6="Assy","N/A",WORKDAY(AC6,(10))))

is this what you wanted?

hth
kevin
 
Upvote 0
Ok so if the value of C6 = Assy you want to see NA in the cell that contains your formula. Is that right?
If I that is right then the following will work:
=IF(ISERROR(AC6/AC6)=TRUE,"",IF(C6="Assy","N/A",WORKDAY(AC6,(10))))
 
Upvote 0

Forum statistics

Threads
1,215,019
Messages
6,122,707
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top