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
dw700d
Post Patron
Post Patron

calculating percent within the same column

I am looking to create a table or matrix with three rows of raw data

StatusFund IV 

 

Fund V                

  Fund VI  Fund Total 
A$1,000,000   $750,000   $0               $1,750,000  
B $450,000$900,000$1,350,000
C$1,100,000$1,300,0001,000,000$3,400,000

 

Then I would like to add two rows that calculate percentage complete.

Row D = (ROW A/ROW C)

Row E = (Sum of (Row A +Row B))/(Row C)

 

Below is what the final product would look like. How can Incorporate the percent calculations in my table/matrix?

 

Status Fund IV  Fund V   Fund VI  Fund Total 
A$1,000,000    $750,000     $0$1,750,000
B $450,000$900,000     $1,350,000  
C$1,100,000$1,300,0001,000,000$3,400,000
D90.91%57.69%0%51.47%
E90.91%92.31%90.00%91.18%

 

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @dw700d ,

 

1.Create a Status table by entering data. There is no relationship between two tables.

3.png4.png

 

2.Select the Status column and select Unpivot other Columns.

5.png6.png

 

3.Add a Conditional Column to sort the Attribute column.

7.png

 

4.Create a measure.

Measure = 
VAR AA =
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Status] = "A" ) )
VAR BB =
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Status] = "B" ) )
VAR CC =
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Status] = "C" ) )
RETURN
    SWITCH (
        MAX ( 'Status'[Status] ),
        "A", FORMAT ( AA, "$0" ),
        "B", FORMAT ( BB, "$0" ),
        "C", FORMAT ( CC, "$0" ),
        "D", FORMAT ( DIVIDE ( AA, CC ), "0.##%" ),
        "E", FORMAT ( DIVIDE ( AA + BB, CC ), "0.##%" )
    )

 

5.Create the following matrix, this matrix is the result.

8.png

 

 

You can check more details from here.


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.

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @dw700d ,

 

1.Create a Status table by entering data. There is no relationship between two tables.

3.png4.png

 

2.Select the Status column and select Unpivot other Columns.

5.png6.png

 

3.Add a Conditional Column to sort the Attribute column.

7.png

 

4.Create a measure.

Measure = 
VAR AA =
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Status] = "A" ) )
VAR BB =
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Status] = "B" ) )
VAR CC =
    CALCULATE ( SUM ( 'Table'[Value] ), FILTER ( 'Table', [Status] = "C" ) )
RETURN
    SWITCH (
        MAX ( 'Status'[Status] ),
        "A", FORMAT ( AA, "$0" ),
        "B", FORMAT ( BB, "$0" ),
        "C", FORMAT ( CC, "$0" ),
        "D", FORMAT ( DIVIDE ( AA, CC ), "0.##%" ),
        "E", FORMAT ( DIVIDE ( AA + BB, CC ), "0.##%" )
    )

 

5.Create the following matrix, this matrix is the result.

8.png

 

 

You can check more details from here.


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.

Greg_Deckler
Super User
Super User

@dw700d - This is likely leading down a rabbit hole of sadness. You could get a measure that based upon "Status" returns one calculation or another but you are likely going to end up pulling all of your hair out trying to swap formats unless you can live with displaying text, then you could use the FORMAT function as part of the output of that measure.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.