In our database the birthmonth, birthday and birthyear are formatted as text. I concatenated the three as follows:
date((val ({corebrthyr})),
(val ({corebrthmn})), (val corebrthdy})))and called it @birthday.
It formats and provides me a birthday format. Now I want to add in a filter that will display the report only if the birth month falls within the current month. I created a formula called @month. Formula is month(currentdate). Here is the comparison:
if @month = @birthday then true else false. I want to put this as a booleon in the record select. However I keep getting a message " A day number must be between 1 and the number of days in the month" It appears there is a problem with the formula called @birthday. Any thoughts and solutions
date((val ({corebrthyr})),
(val ({corebrthmn})), (val corebrthdy})))and called it @birthday.
It formats and provides me a birthday format. Now I want to add in a filter that will display the report only if the birth month falls within the current month. I created a formula called @month. Formula is month(currentdate). Here is the comparison:
if @month = @birthday then true else false. I want to put this as a booleon in the record select. However I keep getting a message " A day number must be between 1 and the number of days in the month" It appears there is a problem with the formula called @birthday. Any thoughts and solutions