Forum Discussion
LauraDaisy
Nov 13, 2019Copper Contributor
IF and ISBLANK formula
I'm trying to work out a formula but don't understand how to build it. =IF(a2>1000,"Senior","Junior") but if the cell is (blank, 0, 1) = "data quality issue"
- Nov 13, 2019
or, perhaps
=IF( A2<=1, "data quality issue",...)
Blank cell will be considered as zero in this case
LauraDaisy
Nov 13, 2019Copper Contributor
hi SergeiBaklan thanks
it doesnt show 0 and 1 as data quality issue though
can i just make the first part multiple option?
=IF(a2="","0","1", "data quality issue",
SergeiBaklan
Nov 13, 2019Diamond Contributor
or, perhaps
=IF( A2<=1, "data quality issue",...)
Blank cell will be considered as zero in this case
- LauraDaisyNov 14, 2019Copper Contributor
SergeiBaklan thanku :o)
- SergeiBaklanNov 16, 2019Diamond Contributor
LauraDaisy , you are welcome