Condition 1 If B = “clinic”, then D = C*8
Condition 2 If B = “clinic”, and E = 1, then D = (C*8)+4
Condition 3 If B = “work”, then D = C*20
Condition 4 If B = “showup”, then D =20
I got for conditions 1,3,4:
=IF(B30=”clinic”,C30*8,IF(B30=”work”,C30*20,IF(B30=”showup”,20)))
I got for condition 2:
=IF(AND(B28=”clinic”,E28=1),(C28*8)+4,C28*8)
How do I incorporate both/all together?