Forum Discussion
Trouble with formulas MIN/MAX within IF statements
- SergeiBaklanApr 05, 2020Diamond Contributor
- BDB1973Apr 05, 2020Copper Contributor
SergeiBaklan and Riny_van_Eekelen
A slight change to the MIN statement provided solved the problem. Instead of using
=MIN(100,SUM(D3,D6,D9,D12,D15,D18)), the cell range in my actual file, changing the 100 to 1 did the trick. So the properly constructed, working formula is now =MIN(1,SUM(D3,D6,D9,D12,D15,D18)), which caps the percentage at 100% or returns the actual summed result that is less than 100%.
Many thanks! - BDB1973Apr 05, 2020Copper Contributor
Thanks for the quick reply. In my actual file, the MIN statement provided would look like this:
=MIN(100,SUM(D3,D6,D9,D12,D15,D18)). But the result is still 112%, when I want to limit it to 100%. If I use MAX instead, the result is 10000% Using MAX and adding /100 of the formula gets the result desired, but don't believe that's the right way to go about it.
- Detlef_LewinApr 05, 2020Silver Contributor
Your values are in %. Replace the 100 with 1.
- Riny_van_EekelenApr 05, 2020Platinum Contributor
SergeiBaklan Of course!! My fingers just didn't do what my mind was thinking 🙂