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

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
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,971
Messages
6,122,521
Members
449,088
Latest member
RandomExceller01

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