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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Dan849800
Frequent Visitor

Dynamic Filters and Graph creation

I have six columns in table and want to create two slicers based on dails and hours, if user select Dials, 'dail information' should show on wheel/ vice versa, It means if user select dails(Slicer1) first 3 columns in pic should display on wheel

                                               if user select Hours(Slicer2) last 3 columns in pic should display on wheel.

 

For this i have got solution from below link,

http://community.powerbi.com/t5/Desktop/Dynamic-column-section-based-on-filter/m-p/134336/highlight/...

 

Continue to above solution , What i need is I have four fields Schedule_Dails,Forecasted_Dails,Required_Dails,Actual dails

 

I want to repeat Required dails column with all fields , Like

 

Required Dails Schedule dails  --Required Forecasted dails- Required dails Actaul dails ( In a graph want to repeat required dails 3 times with all other fileds), Hope this help.any questions let me know

 

Thanks,

Dan.

1 ACCEPTED SOLUTION
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @Dan849800,

>>I want to repeat Required dails column with all fields.

You can use CONCATENATE function to create calculated columns. Then you can use the new columns to create slicers or visuals.

Required Dails Schedule dails = CONCATENATE(Table[Required Dails],Table[Schedule dails])

Required Forecasted dails = CONCATENATE(Table[Required Dails],Table[Forecasted dails])

Required dails Actaul dails = CONCATENATE(Table[Required Dails],Table[Actaul dails])

 


If this not what you want, please post your sample data and list expected result for further analysis.

Best Regards,
Angelia

View solution in original post

2 REPLIES 2
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @Dan849800,

>>I want to repeat Required dails column with all fields.

You can use CONCATENATE function to create calculated columns. Then you can use the new columns to create slicers or visuals.

Required Dails Schedule dails = CONCATENATE(Table[Required Dails],Table[Schedule dails])

Required Forecasted dails = CONCATENATE(Table[Required Dails],Table[Forecasted dails])

Required dails Actaul dails = CONCATENATE(Table[Required Dails],Table[Actaul dails])

 


If this not what you want, please post your sample data and list expected result for further analysis.

Best Regards,
Angelia

Thanks!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors