Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello Community. I would like assistance with the following. I have the following tables and a measure. As you can see the measure if throwing the proper results per row, but the total is not coming up. I need assistance on what to enter in the ??? section of my code. Thanks.
Measure
Tables - Matrix
Solved! Go to Solution.
[Total Sales Amount] = sum ( Sales[Amount] ) -- base measure [Total Target Amount] = sum ( Geo[Target] ) -- base measure [Adjusted Amount for Single Geo] = -- this measure should be hidden var __oneGeoVisible = hasonevalue ( Geo[Geo] ) var __ACsum= calculate ( [Total Sales Amount], keepfilters ( treatas ( {"A", "C"}, Sales[Category] ) ) ) var __targetSum = [Total Target Amount] var __adjustedAmount = max ( __ACsum, __targetSum ) return if ( __oneGeoVisible, __adjustedAmount ) [Adjusted Amount] = -- this is what you wanted sumx( values ( Geo[Geo] ), [Adjusted Amount for Single Geo] )
Best
Darek
[Total Sales Amount] = sum ( Sales[Amount] ) -- base measure [Total Target Amount] = sum ( Geo[Target] ) -- base measure [Adjusted Amount for Single Geo] = -- this measure should be hidden var __oneGeoVisible = hasonevalue ( Geo[Geo] ) var __ACsum= calculate ( [Total Sales Amount], keepfilters ( treatas ( {"A", "C"}, Sales[Category] ) ) ) var __targetSum = [Total Target Amount] var __adjustedAmount = max ( __ACsum, __targetSum ) return if ( __oneGeoVisible, __adjustedAmount ) [Adjusted Amount] = -- this is what you wanted sumx( values ( Geo[Geo] ), [Adjusted Amount for Single Geo] )
Best
Darek
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |