Forum Discussion
corinne2510
Jul 04, 2024Copper Contributor
Multiple IF in one cell
Hi I need some assistance writing a formula with the following specifics: "If A1 contains a value lower than 59% then return 0, and if A1 contains a value greater than 59% but lower than 75% ...
- Jul 04, 2024
Try this:
=IF(A1<59%,0,IF(AND(A1>59%,A1<75%),1,IF(AND(A1>74%,A1<85%),2.5,IF(A1>84%,5,""))))
Kadarshah
Jul 04, 2024Copper Contributor
You can try this formula =IF(A1<0.59, 0, IF(A1<0.75, 1, IF(A1<0.85, 2.5, 5)))