Calculation not adding up.

Rebmit1

New Member
Joined
Apr 20, 2021
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi i have an excel sheet which tracks courses undertaken and when dates are close to expiring and to display if they are out of date. I use the following formula to also show them as either 100% complete not 0% if they are out of date.

=IF(ISBLANK(F18),"",IF(F18<TODAY(),"0","100"))

The formula works well and displays the 0 or 100 correctly however i have multiple rows for each course and i want the 100s to sum up at the bottom of the sheet. The issue is the 100s dont register as a number so wont calculate.

Does anyone have any thoughts why this may be?
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Try removing quotes around the "100"
Excel Formula:
=IF(ISBLANK(F18),"",IF(F18<TODAY(),0,100))
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,750
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top