Amosbroker
New Member
- Joined
- Mar 26, 2018
- Messages
- 32
I have a worksheet where I pull values in one column and assess them in the column next to them.
First column:
contains my unique ID that is my VLOOKUP value (looking up data from another tab)
Second column:
contains gender referred to in formula that is assessed
Third Column Formula: [TABLE="width: 213"]
<tbody>[TR]
[TD="class: xl65, width: 213"]VLOOKUP(A2,sixteen,10,FALSE)[/TD]
[/TR]
</tbody>[/TABLE]
Fourth Column Formula:
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"]IFERROR(IF(AND(B2="Male",C2>40),"High",IF(C2="","Unknown",IF(AND(B2="Female",C2>35),"High","Healthy"))),"Unknown")[/TD]
[/TR]
</tbody>[/TABLE]
My formula works except for the blank expression. Due to the formula being in the cell, it is not actually blank but appears to be so. How do I incorporate no data = Unknown in to my formula? Right now, the blanks come back as high when assessed through my formula.
First column:
contains my unique ID that is my VLOOKUP value (looking up data from another tab)
Second column:
contains gender referred to in formula that is assessed
Third Column Formula: [TABLE="width: 213"]
<tbody>[TR]
[TD="class: xl65, width: 213"]VLOOKUP(A2,sixteen,10,FALSE)[/TD]
[/TR]
</tbody>[/TABLE]
Fourth Column Formula:
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"]IFERROR(IF(AND(B2="Male",C2>40),"High",IF(C2="","Unknown",IF(AND(B2="Female",C2>35),"High","Healthy"))),"Unknown")[/TD]
[/TR]
</tbody>[/TABLE]
My formula works except for the blank expression. Due to the formula being in the cell, it is not actually blank but appears to be so. How do I incorporate no data = Unknown in to my formula? Right now, the blanks come back as high when assessed through my formula.