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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Umesh1988
New Member

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

@Umesh1988 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

@Umesh1988 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 @Umesh1988, 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-...

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/1447...

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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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