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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Anonymous
Not applicable

Excel formula to Dax

Hi All need help in converting below Excel formula to Dax

 

=SUMPRODUCT((source[Job Registered Date]>=(EOMONTH(E7,-1)+1))*(source [Job Registered Date]<=(EOMONTH (E7,0)))*(source [engine type]=D11)*(source[LMP]=C8))

1 ACCEPTED SOLUTION
BeaBF
Super User
Super User

@Anonymous HI! Please note that Excel is not directly translatable into DAX, it depends on several factors and variations. This could be a first draft of code, to then be applied to the data. If you want to give me more information, I would be happy to try to help you.

 

Total =
CALCULATE(
COUNTROWS('source'),
FILTER(
'source',
'source'[Job Registered Date] >= DATE(YEAR(E7), MONTH(E7), 1) &&
'source'[Job Registered Date] <= EOMONTH(E7, 0) &&
'source'[engine type] = D11 &&
'source'[LMP] = C8
)
)

 

BBF

View solution in original post

2 REPLIES 2
BeaBF
Super User
Super User

@Anonymous HI! Please note that Excel is not directly translatable into DAX, it depends on several factors and variations. This could be a first draft of code, to then be applied to the data. If you want to give me more information, I would be happy to try to help you.

 

Total =
CALCULATE(
COUNTROWS('source'),
FILTER(
'source',
'source'[Job Registered Date] >= DATE(YEAR(E7), MONTH(E7), 1) &&
'source'[Job Registered Date] <= EOMONTH(E7, 0) &&
'source'[engine type] = D11 &&
'source'[LMP] = C8
)
)

 

BBF

foodd
Super User
Super User

Hello @Anonymous, and thank you for sharing a question with the Community.  Please remember to adhere to the decorum of the Community Forum when asking a question.

Please provide your work-in-progress Power BI Desktop file (with sensitive information removed) that covers your issue or question completely in a usable format (not as a screenshot). You can upload the PBIX file to a cloud storage service such as OneDrive, Google Drive, Dropbox, or to a Github repository, and then share a file’s URL.

https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216

Please show the expected outcome based on the sample data you provided.

https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523/highlight/true#M607150

This allows members of the Forum to assess the state of the model, report layer, relationships, and any DAX applied.

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

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