Month only reference in formula

austin350s10

Active Member
Joined
Jul 30, 2010
Messages
321
I have a table I am working on that is broken down into the months of the year. Each row of the table need to be populated only if the system month is equal to the month on the table.

The only formulas I can find just reference specific dates such as the full date. i.e. 09/01/2010

Here is a very persocode example of the formula I am looking for:

IF(AND(system date(month)="09",(table month="09")),run formula,"")

How can I get this formula to work correctly??
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
You are sooooo close I think. I think your code refers to a spicific date still...maybe :-\ The area in concern for me is the (celldate) part of your formula. My (celldate) is just the month i.e. 01, 02, 03...

Will it work with just a month value or perhaps the month as text i.e. january, febuary, ....??

=IF(MONTH(TODAY())=MONTH(celldate),run formula,"")
 
Upvote 0
Sorry I wanted to change the formula a little to see if this is possible....

=IF(MONTH(TODAY())=MONTH("january"),run formula,"")


Thankssssss
 
Upvote 0
Try

=IF(MONTH(TODAY())=9,run formula,"")

9 = sept
10 = october
1 = january
etc..
 
Upvote 0
Dude you Fing rock....this just condensed a paragraph long formula I had earlier to one line. YESSSS!!!!!
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

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