I have four cells that get user input, and they ultimately need to add up to 100% (1). The cells are formatted as percentages, with zero decimal places. In a cell off to the side, I want to alert user if their sum doesn't add up to 100%. I'm currently using:
=IF(SUM(C43:C46) = VALUE(100%),"Adds up","Please note - your proportions don't add up to 100%"
I've also tried:
=IF(SUM(C43:C46) = 1, "Adds up", "Please note - your proportions don't add up to 100%"
Either way, it's showing the second result ("please note..."
even when the percentages do add up to 100%. Any advice on why? Thanks much.
SH
=IF(SUM(C43:C46) = VALUE(100%),"Adds up","Please note - your proportions don't add up to 100%"
I've also tried:
=IF(SUM(C43:C46) = 1, "Adds up", "Please note - your proportions don't add up to 100%"
Either way, it's showing the second result ("please note..."
SH