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 would like to ask why my measure is wrong when before its working with other ssas or visual studio dax
Measure : not working
=COUNTROWS (
SUMMARIZE (
FILTER (
SUMMARIZE (
'DIM_DEALER_GENEALOGY',
'DIM_DEALER_GENEALOGY'[MD NAME],
'DIM_DEALER_GENEALOGY'[FD NAME],
'DIM_DEALER_GENEALOGY'[FM NAME],
'DIM_DEALER'[Level],
'DIM_DEALER_GENEALOGY'[IS_FM_FAM_PRSNLTY],
"GROSS", [Gross Amount]
),
'DIM_DEALER_GENEALOGY'[IS_FM_FAM_PRSNLTY] = 1
&& [GROSS] > 0
&& 'DIM_DEALER'[Level] <> "MD"
&& 'DIM_DEALER'[Level] <> "FD"
),
'DIM_DEALER_GENEALOGY'[MD NAME],
'DIM_DEALER_GENEALOGY'[FD NAME],
'DIM_DEALER_GENEALOGY'[FM NAME]
)
)
measure working
=COUNTROWS (
SUMMARIZE (
FILTER (
SUMMARIZE (
'FACT_OFF_TAKE',
'FACT_OFF_TAKE'[MD_NAME],
'FACT_OFF_TAKE'[FD_NAME],
'FACT_OFF_TAKE'[FM_NAME],
'DIM_DEALERS'[LEVEL],
'FACT_OFF_TAKE'[IS_FM_FAM_PRSNLTY],
"GROSS", [Gross Amount]
),
'FACT_OFF_TAKE'[IS_FM_FAM_PRSNLTY] = 1
&& [GROSS] > 0
&& 'DIM_DEALERS'[LEVEL] <> "MD"
&& 'DIM_DEALERS'[LEVEL] <> "FD"
),
'FACT_OFF_TAKE'[MD_NAME],
'FACT_OFF_TAKE'[FD_NAME],
'FACT_OFF_TAKE'[FM_NAME]
)
)
THANKYOU
Solved! Go to Solution.
Hi @Easley06
As I understand in your example only difference is what is source of your SUMMARIZE table: fact or dimension table.
Using SUMMARIZE, like you did it means columns from that table is summarized. In Power BI, you need relationship (or some other feature) to leverage connections between different tables.
I hope this help
Proud to be a Super User!
Hi @Easley06 ,
Based on the information provided, it is difficult to determine why the measure is not working. However, there are some general tips that may help you troubleshoot the issue:
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Easley06 ,
Based on the information provided, it is difficult to determine why the measure is not working. However, there are some general tips that may help you troubleshoot the issue:
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Easley06
As I understand in your example only difference is what is source of your SUMMARIZE table: fact or dimension table.
Using SUMMARIZE, like you did it means columns from that table is summarized. In Power BI, you need relationship (or some other feature) to leverage connections between different tables.
I hope this help
Proud to be a Super User!
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 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
13 | |
12 | |
11 | |
9 |