Syntax to use part of a date in a formula?

belrose

New Member
Joined
Mar 16, 2011
Messages
4
Hi,

I am trying to automate a column in a spreadsheet so that it will return $6.00 if the date column = 01/??/???? (first of the month), however it's 2am and I can't figure out the syntax to tell the formula to just look at the first part of the date.

I'd prefer something a bit more elegant than stripping everything left of the first / into a separate column - I'm sure there must be something I can do with the syntax of my formula?

=IF(A1=???, 6, 0)

Can anyone help me?

Thanks in advance.

Anne
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi,

I am trying to automate a column in a spreadsheet so that it will return $6.00 if the date column = 01/??/???? (first of the month), however it's 2am and I can't figure out the syntax to tell the formula to just look at the first part of the date.

I'd prefer something a bit more elegant than stripping everything left of the first / into a separate column - I'm sure there must be something I can do with the syntax of my formula?

=IF(A1=???, 6, 0)

Can anyone help me?

Thanks in advance.

Anne
How about somethng like this...

=(DAY(A1)=1)*6
 
Upvote 0
Your date format IS dd/mm/yyyy, isn't it? If it's mm/dd/yyyy, the day is the middle number.
 
Upvote 0

Forum statistics

Threads
1,214,411
Messages
6,119,356
Members
448,888
Latest member
Arle8907

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