Power BI Desktop: Sizing Matrix Visual to A4 Page - powerbi

I have created a matrix visual in Power BI Desktop and I need to fit it to an A4 PDF Page (landscape format). Unfortunately the matrix is quite big, so I have to scroll vertically and horizontally to view the whole matrix visual and when I export to PDF, a lot of the matrix is cut. Is there a possibility to reduce for example the font size to fit it to A4 or any other possibilities just using Power BI Desktop?
Thanks!

Related

Is it possible to recreate this visual in Power BI?

I currently have a report that kind of looks like this in Excel. Is it possible to create the same structure with the color formatting in Power BI? Especially with the Percentage Sale and Sales Amount below each other in the row?
I tried using Matrix visual but I kind of run into a problem since the columns would have different format types - whole number and percentage. Also tried with showing columns in rows, while using Percentage Sale and Sales Amount as two columns. But then I would have problems with the color formatting. Any ideas how to achieve it in Power BI?
Its actually simple ..... just follow these steps
1.) You can use matrix or table both... but I preferred tables
2.) Go to format Visual (In visualistation you can see 3 option... its the middle one)
3.) After that click on values.
4.) Now you can se background color , alterante background color etc
5.) Just choose it acc to preferences
If you want a bar label in a selected column then,
6.)In build format, right click on your column (which you want to customize)
7.)Select conditional formatting
8.)Now you can change color
9.)apply this. After that you can see your data of selected columns are showing grid bars

Power BI Card visual Data format

Hi I need to show card visual number as shown in figure, **my question is that How do I change font size after decimal place in Power BI Card like **

Relative size and location of visuals

I'm trying to build my report on Power BI, on my tab there are 3 matrix. When I filter by one of the fields, all my matrix reduce their size and there are some big white holes.
Is there a feature or tool that allows me to place one matrix under another each time they are resized, to avoid those huge white holes?
I searched for the PowerBI documentation but did not find anything to solve my problem.

Color Code shape map using value ranges power bi

I am unable to color US States in power bi shape map based on color ranges.
An aggregated metric is calculated based on all screen filters then it is mapped to color ranges to assign color, as adding a measure in legend field of the chart is not possible I am unable to color it.
Is Power BI dev team planning to include the feature to allow adding measure as the legend or there is any other possible way to achieve this? Any help would be appreciated.

Different color schemes for bars chart in PowerBI

Hi I'm trying to create a Bar Chart like this (This chart is an illustration, not created from data yet):
If the data is being fetched from a single table, how can I have dual color scheme for bar is past and future. Also how can I place a moving marker that automatically updates the TODAY placard based on whenever the report is viewed and accordingly bars should follow the past and future color schemes.
Schema is roughly as follows:
Table1: Issue ID, Release name, issue priority
Table2: Release name, Release date
In Power BI as well as in Excel, the secret is in the data layout. You can't just have all your past and future data in two columns and magically expect that some of them will turn out red and orange instead of dark and light gray.
You will need to prep your data source to include stacked series for the light gray, dark gray, red and orange series. Stack all series on top of each other and make sure that where the red and orange series have values, there are only zero values for the gray series.
I suggest you use four columns for four stacked series and divide the values accordingly.
In Power BI, you can apply the same principle as in this Excel screenshot.
Let me know if you need help translating that to Power BI.
Edit: The Power BI data does not have to be static. You can build columns with Dax functions that arrange the data in the pattern required. Add four columns to your data model with the formulas
chtPastProdA = if(tblProducts[Date]<TODAY(),tblProducts[Product A],0)
chtPastProdB = if(tblProducts[Date]<today(),tblProducts[Product B],0)
chtFutureProdA = if(tblProducts[Date]>=today(),tblProducts[Product A],0)
chtFutureProdB = if(tblProducts[Date]>=today(),tblProducts[Product B],0)
Then build a stacked column chart and stack all four of these series. Format the colors.
For the "Today" marker you would need a custom label, which Power BI currently does not support. But since the demarcation between gray and red/yellow is today, it's quite obvious where the current date is, anyway.