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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply

Weekday as DAX measure and not as calculated column

Hi,

I have a fact table and a calendar table with date. I need to show weekday name (for e.g. 1st Jan is Monday) as DAX measure in pivot table and not a calculated column in calendar table.

I have tried using FORMAT function, its working fine when i use it in calendar table but i need weekday as measure because i have already put "Date" in rows in pivot table.

 

Please help.

Regards

Harish Rathore

1 ACCEPTED SOLUTION

 

DayNameMeasure = IF ( HASONEVALUE ( DateTable[DayName] ), VALUES ( DateTable[DayName] ) )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs

Cheers 

SU18_powerbi_badge

 

View solution in original post

4 REPLIES 4
AlB
Super User
Super User

Hi @HarishRathore25 

If you already have DateTable[Date] in your "pivot table" you can just use:

DayNameMeasure= SELECTEDVALUE( DateTable[DayName] )

where DayName is the name of the column in your DateTable that has the name of the day.

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs

Cheers 

SU18_powerbi_badge

 

Hi @AlB , thanks for your quick response. But i would like to inform you that i do not get any function called "SELECTEDVALUE" in my office 365 version. I am working on powerpivot model in excel. Any other method which can resolve my issue?

 

Regards

Harish

 

DayNameMeasure = IF ( HASONEVALUE ( DateTable[DayName] ), VALUES ( DateTable[DayName] ) )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs

Cheers 

SU18_powerbi_badge

 

Thanks a ton @AlB ..... that worked like a charm.

 

Regards

Harish Rathore

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.

Top Solution Authors