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
- 9 years ago
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] ) ) )
v-chuncz-msft
9 years agoCommunity 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] )
)
)
PMUSUNURI
9 years agoFrequent Visitor
Thanks guys, i figured it out using your leads
- AleksanderPunt8 years agoHelper 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.