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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
RichterSeb
New Member

Translate DAX formular into PQ M

Hello,

I need your help with tranlsating DAX into M.

I have the Dax code already but would like to have it in PowerQuery for other calculations.

 

DimDateTable -> already got it in PQ

 
CountOfInstalledBase = var _filter=COUNTROWS(FILTER('EquipmentsSO',[DimDate]>=[Warranty period (start)].[Date]))
return IF(_filter=BLANK(),1,_filter)
 
CountOfToolsInWarranty = var _filter=COUNTROWS(FILTER('EquipmentsSO',[DimDate]>=[Warranty period (start)]&&[DimDate]<=[Warranty period (end)].[Date]))
return IF(_filter=BLANK(),0,_filter)

 

This is the table I got in DAX.

RichterSeb_0-1675774855571.png

 

I would appreciate any help. Thanks in advance.

 

Regards

Sebastian

0 REPLIES 0

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors