Find Today's Month, and add x

MikeR320

New Member
Joined
Jan 29, 2015
Messages
4
I have been bogged down with this for a couple hours now, so I apologize in advanced if this is poorly written - any help is greatly appreciated.

Fiscal Year Calendar Ranging from AH:CO as follows
Row 9 (Years from 2015 to 2019)
Row 10 (Months from 1-12)
Row 11 (Number of Widgets, found via if(sumif(blahblah)>0,sumif(blahblah),blah*(1+x))

I am trying to dynamically reference today's date, and IF a certain scenario (a, b, c) is selected in AH2, add x (e.g. 5, 10, 15) number of widgets to each month beginning next month and moving forward until the end of the range in CO11.

Thanks in advanced, you geniuses you.
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi,

Strategy: Convert all dates to Excel dateserial numbers then use the built-in date functions to help you.

I think you will need to add data to the months where this is true:
DATE(F9,F10,1)>EOMONTH(TODAY(),0)

For example:
=IF(DATE(F9,F10,1)>EOMONTH(TODAY(),0), add to this month, don't add to this one)

DATE() is used to convert your year and month rows into an Excel date for the first of the month.
EOMONTH is used to find the last day of the current month.
 
Upvote 0

Forum statistics

Threads
1,223,721
Messages
6,174,096
Members
452,542
Latest member
Bricklin

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