Forum Discussion
Syndicate_Admin
Administrator
1 year agoDynamic Chart
Hello everyone I have these two objects in a display box: And I would like, when I selected a month, on the same graph, to see the results by day. In this other way: The X-axis field i...
- 1 year ago
Thank you very much, it has been of great help to me! Best regards
Fowmy
Super User
1 year agoSyndicate_Admin
You can achieve this using Field Parameters. Create the following measure and assign it to the visual using TOPn
File is attached below
Axis Selection =
VAR __MonthFiltered = INT(ISFILTERED('Dates'[Month Name]) )
VAR __Result = INT( MAX(Periods[Periods Order]) <> __MonthFiltered )
RETURN
__Result
No Months selected, it shows by months.
One Month is selected, it shows by date