Forum Discussion
Easy Checkbox help PLEASE!!
Is that on the file I uploaded or on your version of the file?
To make things easier let simplify the formula first, as
=J17*IFS(D11*G11,0.85,D11*G12,0.8,D12*G11,0.8,D12*G12,0.7,TRUE,1)
In any empty cells enter =D11, =D12, etc to be sure check boxes are working on your file. Next, try mtarler suggestion, but I'd prefer to do that not in formula bar but by Formula->Evaluate formula option on ribbon.
Please check with attached file.
SergeiBaklan this is what happens when I download your copy with the new formula. It still does not calculate as it needs to. It says #NAME?.
When I download your copy a few messages up, it just doesnt calculate at all on my end and shows whats in box J17.
Sorry for the bad photo. I only have Excel on my work computer and it restricts screenshots.
- SergeiBaklanMay 08, 2020Diamond Contributor
britt635 , you are welcome, glad to help
- britt635May 08, 2020Copper Contributor
SergeiBaklan That formula works! Oh my gosh, thank you SO much! This has been a complete headache and you have really helped.
- SergeiBaklanMay 08, 2020Diamond Contributor
That most probably means your version of Excel doesn't support IFS(). Use nested IF() instead
=J17*IF(D11*G11,0.85,IF(D11*G12,0.8,IF(D12*G11,0.8,IF(D12*G12,0.7,1))))