Logical Function with months

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,589
Office Version
  1. 2021
Platform
  1. Windows
I have a month and year in A16 on sheet months


I am trying to set up a formula that if the month in A16 < April then return 0 , otherwise return 1, but it retruns 1


Code:
=IF(TEXT(Months!A16,"MMM")<"Apr",0,1)


It would be appreciated if someone could assist
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number

Excel 2010
AB
1April1
Sheet8
Cell Formulas
RangeFormula
B1=IF(MONTH(A1&1)<4,0,1)


works if just text


Excel 2010
AB
1April 161
2May 181
3December 241
4February 110
Sheet8
Cell Formulas
RangeFormula
B1=IF(MONTH(A1)<4,0,1)


works with text and numbers
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,275
Messages
6,171,126
Members
452,381
Latest member
Nova88

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