Nested IIF Function

G

Guest

I am having trouble nesting an IIF function.

My original function (which works) is:
=IIf((([#Completed]-[# Completed 1st Half])=[# Completed 2nd Half]) Or (([#
Completed]-[# Completed 1st Half])>[# Completed 2nd Half]),"Yes","No")

However I only want that function to run if:

=IIf([Reviewer]=[1st Half Reviewer], run the function above,"N/A")

any idea on how I can nest this first function into the 2nd one?
 
C

Chuck

I am having trouble nesting an IIF function.

My original function (which works) is:
=IIf((([#Completed]-[# Completed 1st Half])=[# Completed 2nd Half]) Or (([#
Completed]-[# Completed 1st Half])>[# Completed 2nd Half]),"Yes","No")

However I only want that function to run if:

=IIf([Reviewer]=[1st Half Reviewer], run the function above,"N/A")

any idea on how I can nest this first function into the 2nd one?


=IIf([Reviewer]=[1st Half Reviewer], IIf((([#Completed]-[# Completed 1st
Half])=[# Completed 2nd Half]) Or (([#Completed]-[# Completed 1st Half])>[#
Completed 2nd Half]),"Yes","No"),"N/A")

Chuck
--
 

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