SOLVED

IF and ISBLANK formula

Copper Contributor

 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" 

 

 

6 Replies

@Laura Backshell 

It could be

=IF(A2="", "data quality issue", IF(a2>1000,"Senior","Junior") )  

 

hi @Sergei Baklan 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",

@Laura Backshell 

You may use OR() for that, like

=IF( OR(A2="",A2=0,A2=1), "data quality issue",...)

 

best response confirmed by Laura Backshell (Copper Contributor)
Solution

@Laura Backshell 

or, perhaps

=IF( A2<=1, "data quality issue",...)

Blank cell will be considered as zero in this case

@Sergei Baklan thanku :o)

@Laura Backshell , you are welcome

1 best response

Accepted Solutions
best response confirmed by Laura Backshell (Copper Contributor)
Solution

@Laura Backshell 

or, perhaps

=IF( A2<=1, "data quality issue",...)

Blank cell will be considered as zero in this case

View solution in original post