I need to set up a combination chart but on its x axis it is necessary that I have the separation of 3 periods (year, month and day) as shown in the example below. Sample.pbix
Assumptions:
Bar and line calculations use different measures.
Year Period: Display the columns and rows grouped by year for the period selected in the slice
Period Month: Display the columns and rows grouped by month for the period selected in the slice. The values here would be a break from the previous value, considering only the biggest year of the slice.
Day Period: Display the columns and rows grouped by day for the period selected in the slice. The values here would be a break from the value of the month period, considering only the largest month selected in the slice.
@Wilianfilho_ps , This not possible using the seeded visual. Check for custom visuals
https://appsource.microsoft.com/en-us/marketplace/apps?page=1&product=power-bi-visuals
Another way is that you create a table and merge all three type of data and display
Union(
summarize( Year data),
summarize( Month data),
summarize( Day data)
)
@amitchandak , about the merge of periods, is there a way to make it dynamic?
I remember that as informed the periods have premises for counting lines according to each period, following a single slice
User | Count |
---|---|
183 | |
78 | |
77 | |
75 | |
46 |
User | Count |
---|---|
168 | |
91 | |
89 | |
79 | |
74 |