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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.