Answers for "google sheets multiple if conditions"

0

google sheets multiple if conditions

#test multiple conditions with ifs: IFS(condition1, value1, [condition2, value2, …])
IFS(A1>90, "A", A1>80, "B", A1>70, "C")
Posted by: Guest on September-29-2021
0

google sheets multiple if conditions

#you can nest if conditions
=IF(ISBLANK(H2),,IF(ISBLANK(I2),,H2-I2))
Posted by: Guest on September-29-2021

Code answers related to "google sheets multiple if conditions"

Browse Popular Code Answers by Language