Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 !!
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
11 | |
9 | |
6 |