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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Khushi
Frequent Visitor

POWERBI , How to return Multiple values from a column based on condition and plot it on line chart

I have  table 

SrNOPersonTypeAllocation
1Adult1
2Adult2
3Children2
4Unborn2

Now I want to show in Line chart 
With 4 legend 

  • Adult
  • Children
  • Individual( it is sum of Adult,Children and unborn for a alloaction)
  • Family (if sum of Adult,Children and unborn >0 , then 1 else 0)

    for example 

For Allocation 1 , we will have Adult 1 and Individual 1

For Allocation 2 , we will have 1 Adult, 1 Children 3 Individual, 1 family
and this will be represneted indivial as line charts

 

1 ACCEPTED SOLUTION
Khushi
Frequent Visitor

To solve this I have create 4 measure
VAR SummaryTable =
SUMMARIZE('t',
'Allocation'[Allocation],
"Adults",
CALCULATE (
COUNTROWS ( 'Allocation' )
,'Allocation'[PersonType] IN { "Adult"}
)
)
RETURN
SUMX ( SummaryTable, [Adults] )

Similarly created for other and Plot them in LIne Chart in Y axis .

View solution in original post

1 REPLY 1
Khushi
Frequent Visitor

To solve this I have create 4 measure
VAR SummaryTable =
SUMMARIZE('t',
'Allocation'[Allocation],
"Adults",
CALCULATE (
COUNTROWS ( 'Allocation' )
,'Allocation'[PersonType] IN { "Adult"}
)
)
RETURN
SUMX ( SummaryTable, [Adults] )

Similarly created for other and Plot them in LIne Chart in Y axis .

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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