Forum Discussion
About creating a complex report
hi all
As shown in the attachment, I want to focus multiple charts in one report. Now all I can think of is to use the toolbar to display, but now I need to filter in this chart.So the toolbar part doesn't do the job
By the way, The four statements in the second picture are from the first picture
Best regards
alan-li
Hi Anonymous
You could create a column first
date column = RIGHT('Table (2)'[Column1],2)&"/"&"01"&"/"&LEFT('Table (2)'[Column1],4)Then use this date column in my formula.
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
9 Replies
- v-juanli-msftCommunity Support
Hi Anonymous
As far as i known, there is no such feature in Power BI.
A workaround is to:
use a button to link to a page including your visuals, then click on the button to switch among different visuals.
https://radacad.com/bookmarks-and-buttons-making-power-bi-charts-even-more-interactive
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- AnonymousNot applicable
hi, v-juanli-msft
think very much
Now I have a problem again. I want to create a new measurement value of ATA_MONTH. This field is in my excel data, but BI tells me that I do not have it when I create the measurement value
Then I want the data of ata_month to be turned into English instead of Numbers in the report. Do you know how to solve these two problems
Best Regards
alan-li
- v-juanli-msftCommunity Support
Hi Anonymous
You could create a measure
Measure = FORMAT(MAX('Table'[date]),"yyyy-mmmm")Or a column
Column = FORMAT('Table'[date],"yyyy-mmmm")See reference for "FORMAT"
https://docs.microsoft.com/en-us/dax/format-function-dax
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.