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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Meera556
Helper I
Helper I

Create DAX for window max function in tableau

Hi,

I'm replicating a chart from tableau to power bi adn it is uses a calculated field as below

max_count= WINDOW_MAX(count of products/TOTAL(count of products))

Can anyone help me how to create DAX for the above calculated field.

Thanks for your help in advance

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, @Meera556 

Thanks for @Ritaf1983 reply. In Tableau, the WINDOW_MAX function is used to find the maximum value in a window or a range of data. To achieve a similar calculation in Power BI, you can use following measure.

CountOfProducts = COUNT(YourTableName[YourProductColumnName]) //Calculate the Count of Products

TotalCountOfProducts = CALCULATE([CountOfProducts], ALL(YourTableName))//Calculate the Total Count of Products

RatioOfProducts = DIVIDE([CountOfProducts], [TotalCountOfProducts])//Calculate the Ratio

MaxRatio = MAXX(ALL(YourTableName), [RatioOfProducts]) //Find the Maximum Ratio


Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi, @Meera556 

Thanks for @Ritaf1983 reply. In Tableau, the WINDOW_MAX function is used to find the maximum value in a window or a range of data. To achieve a similar calculation in Power BI, you can use following measure.

CountOfProducts = COUNT(YourTableName[YourProductColumnName]) //Calculate the Count of Products

TotalCountOfProducts = CALCULATE([CountOfProducts], ALL(YourTableName))//Calculate the Total Count of Products

RatioOfProducts = DIVIDE([CountOfProducts], [TotalCountOfProducts])//Calculate the Ratio

MaxRatio = MAXX(ALL(YourTableName), [RatioOfProducts]) //Find the Maximum Ratio


Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

 

Ritaf1983
Super User
Super User

Hi @Meera556 

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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