The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.