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

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Try removing quotes around the "100"
Excel Formula:
=IF(ISBLANK(F18),"",IF(F18<TODAY(),0,100))
 
Upvote 0

Forum statistics

Threads
1,215,379
Messages
6,124,605
Members
449,174
Latest member
ExcelfromGermany

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