Forum Discussion

Darren403's avatar
Darren403
Copper Contributor
Jan 17, 2024
Solved

Formula Help

Hello. I am a Novice Excel user. Here is my formula. I can get it to return a "2" but it always returns a "0" instead of a "1"   =IF(OR(AND(C4>10,D4>8),C4<18,D4<16),1)*(IF(OR(C4>=18,D4>=16),2))  ...
  • mtarler's avatar
    mtarler
    Jan 18, 2024
    =MAX(ROUNDUP((C4-10)/8,0),ROUNDUP((D4-8)/8,0),0)
    just added the ,0 at the end of the max list. that should work

Resources