Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
So how do i generate multiple line charts based on each content of a particular table ie. when i select each row of the table automatically a line graph corresponding to the row should be generated and similarly if i select 2 rows of the table there should be 2 line charts and so on based on the number of selections made on the table .
Solved! Go to Solution.
Hi @Anonymous
In addition to amitchandak 's reply, if your data model is like my sample data, you may try to build an unrelated slicer table and use measure.
Sample Date:
Build a slicer table.
Category = VALUES('Table'[Category])
Measure:
Measure =
VAR _SelectCategory = ALLSELECTED(Category[Category])
Return
IF(ISFILTERED(Category[Category]),SUMX(FILTER('Table','Table'[Category] in _SelectCategory),'Table'[Value]),BLANK())
Build a line chart and result is as below.
By default:
Select A:
Select A & B:
If this reply still couldn't solve your problem, please show me your table and the result you want.
Or you can share your pbix file with me by Onedrive for Business.
You can download the pbix file from this link: Multiple line charts
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
In addition to amitchandak 's reply, if your data model is like my sample data, you may try to build an unrelated slicer table and use measure.
Sample Date:
Build a slicer table.
Category = VALUES('Table'[Category])
Measure:
Measure =
VAR _SelectCategory = ALLSELECTED(Category[Category])
Return
IF(ISFILTERED(Category[Category]),SUMX(FILTER('Table','Table'[Category] in _SelectCategory),'Table'[Value]),BLANK())
Build a line chart and result is as below.
By default:
Select A:
Select A & B:
If this reply still couldn't solve your problem, please show me your table and the result you want.
Or you can share your pbix file with me by Onedrive for Business.
You can download the pbix file from this link: Multiple line charts
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I tried small multiple line chart visual in the market place but it didnt give me the required result
@Anonymous , I doubt any visual like that. If you use a legend line visual and the other table can filter legend. Each legend will create one line
Is there any market visual that can achieve this
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.