cancel
Showing results for 
Search instead for 
Did you mean: 

Little help here, excluding a day of the month

Former Member
0 Kudos

Post Author: keiths

CA Forum: Formula

Basically, I need to exclude all records that occur on the first day of each month regardless of year or month. session_date <> (any, 01, any) I'm new to programming... if you can't already tell. Thank you in advance for your input.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Post Author: SKodidine

CA Forum: Formula

Well, instead of checking the whole date, just check for the Day like this:

Day(session_date) <> 01

This way, no matter what the year or month is, if the day is equal to 1, then the record will not be selected.