Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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
Solved! Go to Solution.
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
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
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 63 | |
| 31 | |
| 30 | |
| 23 |