Stop forecast formula

Erkjerk

New Member
Joined
Sep 24, 2017
Messages
36
Hello,

Just seeing if I can get a little help. So I have a forecast formula =C2/DAY(TODAY())*31 The problem is it doesn't stop at the end of the month at the 31st, it will just keep calculating so the forecast will show some ridiculous number the day after the 31st. I hope this makes sense.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
How about
=IF(DAY(TODAY())>31,"",C2/DAY(TODAY())*31)

Hope this helps
 
Upvote 0
Looks like it is still pulling the super large number. I am thinking it could be cause of the (today) formula or something?
 
Upvote 0
Is this designed to stop calculation when then end of the month comes? If so, you could use:

=IF(TODAY()>EOMOTH(TODAY(),0),"",........
 
Last edited:
Upvote 0
Today will never be greater than the end of this month. ;)
 
Upvote 0
Hello,

Just seeing if I can get a little help. So I have a forecast formula =C2/DAY(TODAY())*31 The problem is it doesn't stop at the end of the month at the 31st, it will just keep calculating so the forecast will show some ridiculous number the day after the 31st. I hope this makes sense.
Looking at this with fresh eyes, is the 31 the number of days of the month? Does this change to correspond to the number of days for a given month?
 
Upvote 0

Forum statistics

Threads
1,215,325
Messages
6,124,252
Members
449,149
Latest member
mwdbActuary

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