I am trying to set up data validation for a report, but two columns aren't flagging blank cells they it should.
The "Blank" list is the title and one blank cell below it. The AcceptReason has four selections below the title, and the RejectReason has ten. Column I has data validation for length.
1st condition, in column K: =IF($I2="",Blank,Status)
What it's supposed to do: If the cell in column I is blank, then "Blank" list, else from "Status" list. ("Accept" or "Reject")
2nd condition, in column L:
=IF($I2="",Blank,IF($K2="A",AcceptReason,RejectReason))
What it's supposed to do: If the cell in column I is blank, then "Blank" list, else response from either "Accept" list or "Reject" list, based on what is in column K
But if I put something in a row in column I, and leave K & L blank, it doesn't flag K or L as errors. What am I doing wrong?
The "Blank" list is the title and one blank cell below it. The AcceptReason has four selections below the title, and the RejectReason has ten. Column I has data validation for length.
1st condition, in column K: =IF($I2="",Blank,Status)
What it's supposed to do: If the cell in column I is blank, then "Blank" list, else from "Status" list. ("Accept" or "Reject")
2nd condition, in column L:
=IF($I2="",Blank,IF($K2="A",AcceptReason,RejectReason))
What it's supposed to do: If the cell in column I is blank, then "Blank" list, else response from either "Accept" list or "Reject" list, based on what is in column K
But if I put something in a row in column I, and leave K & L blank, it doesn't flag K or L as errors. What am I doing wrong?