Forum Discussion
PMUSUNURI
9 years agoFrequent Visitor
Show upcoming Birthdays
Hi Guys,
I have a column for 'Birthdays' - Dates, i am trying to show if there are any birthdays coming up in a week period.
Any suggestions regarding this visual?
-Thank You
You may refer to the following DAX that creates a new table.
Table = FILTER ( Table1, CONTAINS ( ADDCOLUMNS ( CALENDAR ( TODAY () + 1, TODAY () + 7 ), "Month", MONTH ( [Date] ), "Day", DAY ( [Date] ) ), [Month], MONTH ( Table1[Birthday] ), [Day], DAY ( Table1[Birthday] ) ) )
4 Replies
- v-chuncz-msftCommunity Support
You may refer to the following DAX that creates a new table.
Table = FILTER ( Table1, CONTAINS ( ADDCOLUMNS ( CALENDAR ( TODAY () + 1, TODAY () + 7 ), "Month", MONTH ( [Date] ), "Day", DAY ( [Date] ) ), [Month], MONTH ( Table1[Birthday] ), [Day], DAY ( Table1[Birthday] ) ) )- PMUSUNURIFrequent Visitor
Thanks guys, i figured it out using your leads
- AleksanderPuntHelper I
Can you please share your solution? :) I've been looking for a way to show upcoming birthdays (ranked to show the first upcoming at top) of employees.
- Phil_SeamarkMicrosoft Employee