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.
Hi All,
For Example: Consider the below table, we need to create three measures where it calculates the average of Sales % that's within the below ranges.
1. First measure - Calculate Average of sales % when sales % <= 30%
Eg: 26.7% + 26.8% + 29.3% / 3 = 27.6%
2. Second measure - Calculate Average of sales % when sales % > 30% and <= 40%
Eg: 30.4% + 31.8% + 34.6% + 38.6% / 4 = 33.85%
3. Thrid measure - Calculate Average of sales % when sales % > 40% and <= 100%
Eg: 41.4% + 63.4% / 2 = 52.4%
Note: Sales% is a calculated measure
We need to use all these 3 measures in 3 different card visual. Can anybody help me with the logic here?
Product Category | Product Sub Category | Sales % (Calculated measure) |
A | 1 | 26.7% |
A | 2 | 26.8% |
A | 3 | 29.3% |
B | 4 | 30.4% |
B | 5 | 31.8% |
B | 6 | 34.6% |
B | 7 | 38.6% |
C | 8 | 41.1% |
C | 9 | 63.4% |
Thanks in advance !!
Solved! Go to Solution.
You can try these measures
First Measure =
VAR _table =
SUMMARIZE (
'Table',
'Table'[Product Category],
'Table'[Product Sub Category],
"Sales% value", [Sales %]
)
RETURN
AVERAGEX ( FILTER ( _table, [Sales% value] <= 0.3 ), [Sales% value] )
Second Measure =
VAR _table =
SUMMARIZE (
'Table',
'Table'[Product Category],
'Table'[Product Sub Category],
"Sales% value", [Sales %]
)
RETURN
AVERAGEX (
FILTER ( _table, [Sales% value] > 0.3 && [Sales% value] <= 0.4 ),
[Sales% value]
)
Third Measure =
VAR _table =
SUMMARIZE (
'Table',
'Table'[Product Category],
'Table'[Product Sub Category],
"Sales% value", [Sales %]
)
RETURN
AVERAGEX (
FILTER ( _table, [Sales% value] > 0.4 && [Sales% value] <= 1 ),
[Sales% value]
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
You can try these measures
First Measure =
VAR _table =
SUMMARIZE (
'Table',
'Table'[Product Category],
'Table'[Product Sub Category],
"Sales% value", [Sales %]
)
RETURN
AVERAGEX ( FILTER ( _table, [Sales% value] <= 0.3 ), [Sales% value] )
Second Measure =
VAR _table =
SUMMARIZE (
'Table',
'Table'[Product Category],
'Table'[Product Sub Category],
"Sales% value", [Sales %]
)
RETURN
AVERAGEX (
FILTER ( _table, [Sales% value] > 0.3 && [Sales% value] <= 0.4 ),
[Sales% value]
)
Third Measure =
VAR _table =
SUMMARIZE (
'Table',
'Table'[Product Category],
'Table'[Product Sub Category],
"Sales% value", [Sales %]
)
RETURN
AVERAGEX (
FILTER ( _table, [Sales% value] > 0.4 && [Sales% value] <= 1 ),
[Sales% value]
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
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 |
---|---|
59 | |
53 | |
52 | |
36 | |
33 |
User | Count |
---|---|
80 | |
73 | |
45 | |
45 | |
43 |