Hi @CustomCruiser ,
Guess I was thrown off by the title of the column, since it actually contains the date of birth.
In that case I'd try using the AddColumns function to add a column with the next upcoming birthday:
Filter(
AddColums(
Clients,
"NextBirthday",
If(
Date(Year(Today()), Month(Birthday), Day(Birtday)) < Today(),
Date(Year(Today())+1, Month(Birthday), Day(Birtday)),
Date(Year(Today()), Month(Birthday), Day(Birtday))
)
),
NextBirthday = Today() +7
)
The reason for the If function is for birtdays in the first week of January where, in the last week of December, nothing would get returned because the year is not set correctly.
Apologies up front for any syntax errors, I'm typing this on my phone.
EDIT: an easier way may be:
Filter(
Clients,
Day(Birthday) = Day(Today()+7),
Month(Birthday) = Month(Today()+7))
)