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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
learner03
Post Partisan
Post Partisan

Pie Chart with COUNT

I need a basic pie chart where the total should be constant number, say, 2000. and there is a table that has item lines. I need to show the basic calculation on pie cart, as to from total 2000, how many items lines we have.

example-In the table there are 1700 lines, so how much  is remaining. (but in a pie chart)

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

I suggest having a STATUS table like below.

I hope the below can provide some ideas on how to create a solution for your datamodel.

 

Jihwan_Kim_0-1669608773129.pngJihwan_Kim_1-1669608786451.png

 

Jihwan_Kim_2-1669608999934.png

 

 

Expected result measure: =
VAR _countrow =
    COUNTROWS ( Data )
RETURN
    SWITCH (
        SELECTEDVALUE ( 'Status'[Status] ),
        "All count", _countrow,
        "Remaining count upto 500", 500 - _countrow
    )

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

1 REPLY 1
Jihwan_Kim
Super User
Super User

Hi,

I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.

Please check the below picture and the attached pbix file.

I suggest having a STATUS table like below.

I hope the below can provide some ideas on how to create a solution for your datamodel.

 

Jihwan_Kim_0-1669608773129.pngJihwan_Kim_1-1669608786451.png

 

Jihwan_Kim_2-1669608999934.png

 

 

Expected result measure: =
VAR _countrow =
    COUNTROWS ( Data )
RETURN
    SWITCH (
        SELECTEDVALUE ( 'Status'[Status] ),
        "All count", _countrow,
        "Remaining count upto 500", 500 - _countrow
    )

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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