Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I've tried MAXX() around the ADDCOLUMNS(), but that just gives me the value of 31.837.
I want the Market Name returned "04167-Boston".
EVALUATE
ADDCOLUMNS (
SUMMARIZE (
STORE_CONNECT,
STORE_CONNECT[Market]
),
"WOS", DIVIDE ( CALCULATE ( [OH] ), CALCULATE( [Sales] ) )
)
MARKET WOS
04167-Boston 31.8373525792809
04253-NewYork 28.7424878959799
03044-Charleston 25.8248559556622
00654-Minneapolis 24.9126105413978
05515-Tempe 24.8818140998196
04456-Anaheim 22.9656216911629
Solved! Go to Solution.
HI @Darrell
Try this:
Measure =
Var _A =
ADDCOLUMNS (
SUMMARIZE (
STORE_CONNECT,
STORE_CONNECT[Market]
),
"WOS", DIVIDE ( CALCULATE ( [OH] ), CALCULATE( [Sales] ) )
)
Var _B = MAXX(_A,[WOS])
Var _C = Filter(_A,[WOS]=_B)
return
MAXX(_C,[MARKET])
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
HI @Darrell
Try this:
Measure =
Var _A =
ADDCOLUMNS (
SUMMARIZE (
STORE_CONNECT,
STORE_CONNECT[Market]
),
"WOS", DIVIDE ( CALCULATE ( [OH] ), CALCULATE( [Sales] ) )
)
Var _B = MAXX(_A,[WOS])
Var _C = Filter(_A,[WOS]=_B)
return
MAXX(_C,[MARKET])
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Check out the March 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
92 | |
64 | |
56 | |
46 | |
45 |