Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi everyone.
May I know how can I filter value from one column to become 2 and to put in line chart/
For example, based on the picture below. Amount that have contract (100 + 100 + 100) , should put inside "values" in the line chart. and Amount that is non-contract have to put inside 'Secondary value" in the line chart.
May I know how can i do that ?
Thank you so much
Solved! Go to Solution.
@Anonymous , You have to create two measures, if you need two axes. For the same axis, you can use legend (contract/non contract)
M1 = calculate(sum(Table[Amount]), filter(Table, Table[contract/non contract] = "Contract" ))
M1 = calculate(sum(Table[Amount]), filter(Table, Table[contract/non contract] = "Non Contract" ))
@Anonymous , You have to create two measures, if you need two axes. For the same axis, you can use legend (contract/non contract)
M1 = calculate(sum(Table[Amount]), filter(Table, Table[contract/non contract] = "Contract" ))
M1 = calculate(sum(Table[Amount]), filter(Table, Table[contract/non contract] = "Non Contract" ))
Hi, Thank you so much !! it works !!