3G
Member
Hi there-
I have a user access form with some data validation that I'd like to have "blank" until a user selects some of the drop downs. However, my current formula is returning the result of the IFERROR condition as nothing has been selected. What I'd like to have happen is if F10 is blank, I want the rest of the columns to be blank. (F10 is the first required piece of information for them to enter). Users have 4 pieces of information to submit before the formula will evaluate to a result, or an error (The "No application exists" portion of the formula below). Those pieces of information are F10, H10, I10, & J10 which are concatenated into W10 and sent into the Match portion of the formula.
I also have just a plain old
but again, it evaluates to the IFERROR portion because W10 is blank (it is a helper/feeder column to the index/match)
Any ideas?
I have a user access form with some data validation that I'd like to have "blank" until a user selects some of the drop downs. However, my current formula is returning the result of the IFERROR condition as nothing has been selected. What I'd like to have happen is if F10 is blank, I want the rest of the columns to be blank. (F10 is the first required piece of information for them to enter). Users have 4 pieces of information to submit before the formula will evaluate to a result, or an error (The "No application exists" portion of the formula below). Those pieces of information are F10, H10, I10, & J10 which are concatenated into W10 and sent into the Match portion of the formula.
Code:
=IF(F10="","",IFERROR(INDEX(Settings!P$3:P$168,MATCH($W10,Settings!$O$3:$O$168,0),MATCH(M$9,Settings!$P$2:$W$2)),"No Application Exists"))
I also have just a plain old
Code:
=IFERROR(INDEX(Settings!P$3:P$168,MATCH($W10,Settings!$O$3:$O$168,0),MATCH(M$9,Settings!$P$2:$W$2)),"No Application Exists")
but again, it evaluates to the IFERROR portion because W10 is blank (it is a helper/feeder column to the index/match)
Any ideas?