Forum Discussion

akshah's avatar
akshah
Frequent Visitor
8 years ago
Solved

pie chart remaining values

Dear All,   I am new to Power BI. I know it is a silly doubt but i have been trying since a lot of time.  I have 5 rows and 2 columns the percentage of that row does not come up to 100%.    But...
  • v-chuncz-msft's avatar
    v-chuncz-msft
    8 years ago

    akshah,

     

    You may add a calculated table.

    Table =
    UNION (
        Table1,
        ROW ( "Buildings Type", "remaining", "Value", 100 - SUM ( Table1[Value] ) )
    )