Quantcast
Channel: Hot Weekly Questions - Web Applications Stack Exchange
Viewing all articles
Browse latest Browse all 9768

Trying different discounts based on group sizes, but discount always the same at x even for >x

$
0
0

C9 being the group size, these are the formulas I used:

  1. =IFS(C9<5, "0%",C9>=5,"15%", C9>=15, "25%", C9>=40, "40%")
  2. =IF(C9<5,"0%",IF(C9>=5,"15%",IF(C9>=15,"25%",IF(C9>=40, "40%"))))

C9 = 43 but the result of both calculations is still showing 15% instead of 40.


Viewing all articles
Browse latest Browse all 9768

Trending Articles