Forum Discussion
POWERBI , How to return Multiple values from a column based on condition and plot it on line chart
I have table
| SrNO | PersonType | Allocation |
| 1 | Adult | 1 |
| 2 | Adult | 2 |
| 3 | Children | 2 |
| 4 | Unborn | 2 |
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
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 .
1 Reply
- KhushiFrequent 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 .