Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
PMUSUNURI
Frequent 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

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@PMUSUNURI,

 

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] )
    )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-chuncz-msft
Community Support
Community Support

@PMUSUNURI,

 

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] )
    )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks guys, i figured it out using your leads

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_Seamark
Employee
Employee

Hi @PMUSUNURI

Have you tried this one?

 

https://store.office.com/en-us/app.aspx?assetid=WA104380905&sourcecorrid=01c2b81a-9437-4603-9b64-342...

 

Cheers,

 

Phil


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.