Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
johnmurphy
New Member

Combining Measures for Group Chart

Dear All,

 

I was hoping you could help me out, I have the following data set

 

Customer                Contract Type        Potential Sales Amt        Annual Fee          Services

1                                Lease                        1050                               5000                  10

2                                Own                          500                                1000                  150

3                                New                        20000                                   0                    0

4                                Lease                        800                                 3000                    70

5                                Own                          1000                               1000                 150

6                                New                        15000                                   0                    0

 

And I want to create a graph as the following

 

Stacked Chart

1.Potential ---> Total Potential Sales with Segmentation by Contract Type

2. Services ---> Total Services all up

3. Annual Fees+Lease ---> Total Annual Fees + Potential Sales Amt (only for Lease)

 

Thanks.

John

1 ACCEPTED SOLUTION
v-xjiin-msft
Solution Sage
Solution Sage

@johnmurphy

 

To achieve your requirement, you can refer to following measures:

1. Potential ---> Total Potential Sales with Segmentation by Contract Type

 

Total Potential Sales = CALCULATE(SUM(Table1[Potential Sales Amt]),FILTER(ALL(Table1),Table1[Contract Type]=MAX(Table1[Contract Type])))

 

2.Services ---> Total Services all up

 

Total Services = SUMX(ALL(Table1),Table1[Services])

3. Annual Fees+Lease ---> Total Annual Fees + Potential Sales Amt (only for Lease)

 

Total Annual Fees = CALCULATE(SUM(Table1[Annual Fee]),FILTER(ALL(Table1),Table1[Contract Type]="Lease"))

1.PNG

Thanks,
Xi Jin.

View solution in original post

1 REPLY 1
v-xjiin-msft
Solution Sage
Solution Sage

@johnmurphy

 

To achieve your requirement, you can refer to following measures:

1. Potential ---> Total Potential Sales with Segmentation by Contract Type

 

Total Potential Sales = CALCULATE(SUM(Table1[Potential Sales Amt]),FILTER(ALL(Table1),Table1[Contract Type]=MAX(Table1[Contract Type])))

 

2.Services ---> Total Services all up

 

Total Services = SUMX(ALL(Table1),Table1[Services])

3. Annual Fees+Lease ---> Total Annual Fees + Potential Sales Amt (only for Lease)

 

Total Annual Fees = CALCULATE(SUM(Table1[Annual Fee]),FILTER(ALL(Table1),Table1[Contract Type]="Lease"))

1.PNG

Thanks,
Xi Jin.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.