Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |