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
Hello, I have the measure:
That's the idea, but I can't filter by date, as it's not possible to make any relationship. Is there any way I can plot this graph but it reacts to the year filter?
Below is the measure [Realizado], used in the classification:
Solved! Go to Solution.
You can try to create a new table, then put the type to the new table
e.g
Type={"A","B","C","K"}
Then create a new measure
e.g
Counts =
CALCULATE (
COUNTROWS ( dClientes ),
FILTER ( dClientes, [Classificação Cliente Peças] IN VALUES ( 'Type'[Value] ) )
)
Then put the Counts measure to the y-axis, then it can be affected by the date filter.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can try to create a new table, then put the type to the new table
e.g
Type={"A","B","C","K"}
Then create a new measure
e.g
Counts =
CALCULATE (
COUNTROWS ( dClientes ),
FILTER ( dClientes, [Classificação Cliente Peças] IN VALUES ( 'Type'[Value] ) )
)
Then put the Counts measure to the y-axis, then it can be affected by the date filter.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.