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
Anonymous
Not applicable

DAX formula for MODE giving errors

Hello All,
 
I am new to PowerBi and working on a DAX formula to calculate Mode of my data set. (see attached)
 
I got following formula from one of the sites, which works correctly except for few columns. I have mentioned the same in the sheet tab. Can someone help pinpoint why Excel Mode Formula and PowerBi Mode DAX is not matching for these columns whereas it matches for rest of the columns?

mode2 = VAR myTable = SUMMARIZE(Data,Data[Value],"Count",COUNT(Data[Value]))
VAR myTable1 = FILTER(myTable,[Count]=MAXX(myTable,[Count]))
VAR mode1 = MAXX(LASTNONBLANK(myTable1 ,[Value]),[Value])
RETURN mode1


Sample File

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Found the problem. It was not an error, but because that column had 2 modes, DAX was picking up the max among the two. Excel by default picks up minimum of the two. I just updated the formula as Maxx(firstnonblank(mytable1,[value]),[value]) and it now gives same result as excel file.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Found the problem. It was not an error, but because that column had 2 modes, DAX was picking up the max among the two. Excel by default picks up minimum of the two. I just updated the formula as Maxx(firstnonblank(mytable1,[value]),[value]) and it now gives same result as excel file.

v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous 

Could you share your sample data which could reproduce your scenario and your desired output?You can upload the .pbix file to OneDrive and post the link here. Do mask sensitive data before uploading.

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Unfortunately I cant upload the PBIX because it has lot of sensitive data. I had uploaded the sample excel data sheet in the following link. Have a look and use the DAX i had posted before to check the error.

 

Sample File

 

Thanks,

AK

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors