Year Formula Partially Works

PeterGeeJA

New Member
Joined
Mar 25, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
By default, the formula below (in cell C8) returns the current year.

=IF(OR(C8="[Select Month]",C8=""),"",IF(D12=TEXT(TODAY(),"yyyy"),"",IF(D12<>"",D12,TEXT(TODAY(),"yyyy"))))

1. It works OK for all the conditions EXCEPT one.

2. If the value in cell C8 is equal to the value in cell D12, then cell C8 should not show a value, otherwise the value of cell D12 should be shown.

3. However, When C8 = C12, the value is also shown C8, which should not be.


Please help. Thanks.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Add it to the OR part at the start:

Excel Formula:
=IF(OR(C8="[Select Month]",C8="",C8=D12),"",IF(D12=TEXT(TODAY(),"yyyy"),"",IF(D12<>"",D12,TEXT(TODAY(),"yyyy"))))
 
Upvote 0
Thanks for your help.

The solution found was modifying the formula to, YEAR(TODAY()), making it numeric to match the numeric value entered in D12.
 
Upvote 0
Welcome to the MrExcel Message Board!

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: Year Formula Partially Works
There is no need to repeat the link(s) provided above but if you have posted the question at other places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0

Forum statistics

Threads
1,215,126
Messages
6,123,200
Members
449,090
Latest member
bes000

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