Region does not autozoom using a custom tileset in Mapbox Power BI visual - powerbi

We are using a custom tileset for US counties in the Mapbox Power BI visual. Unfortunately, when I drill through on a state (Figure 1), the counties in said state do not autozoom (Figure 2a). There is underlying data (Figure 2b) after I manually zoom into the state. On the other hand, when I drill through on as state for ZIP codes, the visual DOES autozoom into the state (Figure 3; note: US Postcodes ZCTA is a pre built-in tileset inside the Mapbox PBI visual).
Would you kindly advise how I could get the state to autozoom for counties drill through? Might it be an issue because it is a custom tileset? I would appreciate any advise you could provide. Thank you.
Figure 1.
Figure 2a.
Figure 2b.
Figure 3.
I noticed a different user with a custom tileset and they were able to autozoom. Thoughts?

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 - Evaluate the logic and Highlight the subtotals (Conditional Formatting)

Is it possible to highlight the subtotals of a matrix based on conditions (Dynamic Measure).
This Requirement is very much do-able in Excel. But, Can we do the same with Power BI.
The Subtotal row (Total on the screenshot) has been highlighted as red if the allocation is more than the capacity and highlighted as green if the allocation is lesser than the capacity and when it is equal it is highlighted in Yellow.
Adding the thread postponed on the Power BI Community here :- https://ideas.powerbi.com/forums/265200-power-bi-ideas/suggestions/17401381-conditional-formatting-for-total-and-subtotals-in
Kindly let me know, if this is do-able now by making changes in the Model and provide a small working example.

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.

PowerBi Map Interactions

I have 2 maps in PowerBi, one shows a job count and the other a material spend. If I zoom one map to look at a problem area I want the other maps to zoom to that point too. I cant find any mention of how this could be done but wondering if anyone knows?
PowerBi Map
The best you can do would be to add a Slicer based on "area", which would apply to both maps.