Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Thanks in Advance
Solved! Go to Solution.
Hi @shubh_kush ,
You can create a seperate table for unique benefits as below
Table 2 =
VAR distnct_benefit1 =
DISTINCT ( Deployment[Benefit 1] )
VAR distnct_benefit2 =
DISTINCT ( Deployment[Benefit 2] )
VAR distnct_benefit3 =
DISTINCT ( Deployment[Benefit 3] )
RETURN
DISTINCT ( UNION ( distnct_benefit1, distnct_benefit2, distnct_benefit3 ) )
Now create a two measure one for onprem and another for cloud with below code
Cloud =
VAR result =
CALCULATE (
COUNT ( Deployment[Deployement] ),
FILTER (
Deployment,
Deployment[Deployement] = "Cloud"
&& (
Deployment[Benefit 1] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 2] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 3] = MAX ( 'Table 2'[Benefits] )
)
)
)
RETURN
IF ( ISBLANK ( result ), 0, result )
On_Prem =
VAR result =
CALCULATE (
COUNT ( Deployment[Deployement] ),
FILTER (
Deployment,
Deployment[Deployement] = "On Prem"
&& (
Deployment[Benefit 1] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 2] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 3] = MAX ( 'Table 2'[Benefits] )
)
)
)
RETURN
IF ( ISBLANK ( result ), 0, result )
Now add benefits column from newly created table and add above measure you will see required output as below
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @shubh_kush ,
You can create a seperate table for unique benefits as below
Table 2 =
VAR distnct_benefit1 =
DISTINCT ( Deployment[Benefit 1] )
VAR distnct_benefit2 =
DISTINCT ( Deployment[Benefit 2] )
VAR distnct_benefit3 =
DISTINCT ( Deployment[Benefit 3] )
RETURN
DISTINCT ( UNION ( distnct_benefit1, distnct_benefit2, distnct_benefit3 ) )
Now create a two measure one for onprem and another for cloud with below code
Cloud =
VAR result =
CALCULATE (
COUNT ( Deployment[Deployement] ),
FILTER (
Deployment,
Deployment[Deployement] = "Cloud"
&& (
Deployment[Benefit 1] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 2] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 3] = MAX ( 'Table 2'[Benefits] )
)
)
)
RETURN
IF ( ISBLANK ( result ), 0, result )
On_Prem =
VAR result =
CALCULATE (
COUNT ( Deployment[Deployement] ),
FILTER (
Deployment,
Deployment[Deployement] = "On Prem"
&& (
Deployment[Benefit 1] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 2] = MAX ( 'Table 2'[Benefits] )
|| Deployment[Benefit 3] = MAX ( 'Table 2'[Benefits] )
)
)
)
RETURN
IF ( ISBLANK ( result ), 0, result )
Now add benefits column from newly created table and add above measure you will see required output as below
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Your solution works perfectly fine 🙂
Thanks a lot. But the total for the column is not correct. Instead of total, it is showing Maximum.
For getting correct total you can create another two measure apart from above mentioned measures.
cloud_total =
SUMX (
SUMMARIZE ( 'Table 2', 'Table 2'[Benefits], "_cloud_sum", [Cloud] ),
[_cloud_sum]
)
onprem_total =
SUMX (
SUMMARIZE ( 'Table 2', 'Table 2'[Benefits], "_onprem_sum", [On_Prem] ),
[_onprem_sum]
)
Update count measure as below:-
Count = [cloud_total] + [onprem_total]
Use these measures in table visual:-
Note:- Dont delete previously provided measure since we have used those measure only to get correct total.
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
I tried Unpivoting it but it will change the structure of the table and data. I'm looking for a solution by which I can create one single column with all the Benefits value, so that I can show count based on each Deployment type. The issue I'm facing with the 3 different benefits columns as I cannot create 3 differnet relationship between two tables.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
69 | |
64 | |
50 | |
36 | |
26 |
User | Count |
---|---|
85 | |
55 | |
45 | |
44 | |
36 |