How do I combine a VLOOKUP formula and a NETWORKDAYS formula?

T

Tracy

If cell G3 equals "Defer to Network" then I want cell J3 to equal "N/A". If
cell G3 equals "MTF Accept" then I want cell J3 to use a NETWORKDAYS formula
to calculate the difference in days. How do I combine the two formulas?
Thanks.
 
F

Fred Smith

In J3, you want:

=if(g3="Defer to Network","N/A",if(g3="MTF Accept",networkdays(...),"neither
defer nor accept"))

Regards,
Fred.
 
T

Tracy

Wonderful!!! Thank you.

Fred Smith said:
In J3, you want:

=if(g3="Defer to Network","N/A",if(g3="MTF Accept",networkdays(...),"neither
defer nor accept"))

Regards,
Fred.
 

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

Top