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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Whitewater100
Solution Sage
Solution Sage

M code Substitute Question

Hello:

 

I have a need to show start of week as Monday's Date unless Monday is a holiday, then Tuesday's Date would be the Start of Week Date.

 

I also have another measure in DAX showing the previous weeks date with the same criteria. I'll put the measures below.

 

What appears to be happening is that these two measures(in cards) go blank when viewing the report in Power BI Service.

 

I'm wondeing if replicating these measures in M code in a Date table would fix the blank visuals in Service?

 

Thanks for any input on this issue!

 

Report Start Date =
var _selectedYear = SELECTEDVALUE(Dates1[year])
var _selectedWeek = SELECTEDVALUE(Dates1[Week No.])
var _startOfTheWeek =
CALCULATE(
    FIRSTDATE(Dates1[Date]),
    FILTER(ALL(Dates1),
    Dates1[Week No.] = _selectedWeek && Dates1[year] = _selectedYear && Dates1[Flag] = "WeekStart")
)
return
_startOfTheWeek
 
PW Report Start Date =
var _selectedYear = SELECTEDVALUE(Dates1[year])
var _selectedWeek = SELECTEDVALUE(Dates1[Week No.])-1
var _startOfTheWeek =
CALCULATE(
    FIRSTDATE(Dates1[Date]),
    FILTER(ALL(Dates1),
    Dates1[Week No.] = _selectedWeek && Dates1[year] = _selectedYear && Dates1[Flag] = "WeekStart")
)
return
_startOfTheWeek
1 REPLY 1
Anonymous
Not applicable

Hi @Whitewater100 ,

 

In Power Query, M language is used. DAX is used in Power BI Desktop. M and DAX are two completely different languages.

So you can't just copy the dax formula into the M code.

Power Query, M, and DAX: A happy threesome.

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

Top Solution Authors