Hi
I have a page with 3 charts and a table (product and other 2 columns). Table works like a slicer/filter. When user selects the product, charts show the data. If nothing selected charts are empty but the area remains (measure uses HASONEVALUE). I was requested to hide the chart area/ greyout if nothing is selected. I thought of bookmarks (if item in a table is selected -> show all visuals, if nothing selected -> hide 3 chart visuals). Is there any way to trigger bookmark on table row selection?
BR
Related
When I enable Cross Filter option and click on 1 Column cell it is selecting that particular cell but not the whole row. Please guide me if there is any option to select the complete row in a table chart. This is a blocker for our request given by Client
How to reproduce the bug
Go to 'Table Chart page'
Enable 'Emit Dashboard Cross Filters'
Go to the table and select any column cell
You could see only that cell is selected not the complete row in which the selected cell is present
Expected results:
Entire Row has to be selected
I am learning power BI , for one of my requirement i want to filter table based on the selected value from the slicer and show it in different slicer.
So, here there are 4 slicer and based on selection of one slicer i have to populate the data for the 2nd.
My Table Looks Like
id Name ParentId
1 A null
2 A.1 1
3 A.1.B.1 2
So, i have only 1 table where i have to search the element by id -> parentId and then populate it in the next slicer.
e.g: if We select A then in the next slicer we should show A.1 since , id --> 1(A) = ParentId --> 1(A.1)
I tried to create separate table and then link the id with parentid in the mapping section , this concept is working but not the problem is .
If we select A then in 2nd combo A.1 and A.2 is displaying , but as we click on A.1 on the 2nd combo and then try to click on the elements on 1st combo here in our case A , then the filter is not working properly .
If appending the elements from previous selection + New selection
e.g:
Slicer 1 Slicer 2
A -- (1,2,3)
B -- (4,5,6)
Now , after clicking on A[1st Slicer] it shows (1,2,3) [2nd Slicer]
After clicking on 2 [2nd Slicer] --> showing some elements in [3rd
slicer]
But, now again click on B [1st slicer] --> [4,5,6,2] (Wrong value)
since we selected 2 its appending with the new selection only if we
click on the 2nd slicer.
So, as an alternate solution I tried to filter the selected value which is measure from the table and then show it in the list.
My expression:
Table = FILTER(TableA, TableA[id] == Tableb[selectedId] )
Tableb[selectedId] --> is measure
Table = FILTER(TableA, TableA[id] == "8DE04141-E5B6-49E1-814A-ADB4C6FF5DCF" ) --> selected Id
1st statement is not showing any value but the 2nd giving me the result when i am hard coding value , please suggest me what i can do here.
i want to filter table based on the selected value from the slicer and show it in different slicer.
You don't need DAX for that. You just set up the correct relationships and set filters and slicers in the report.
I have created a Dashboard where I have a list of 100 entries of different frim names, I have created a rank measure and have add it to the filters to get the top 25 firms in terms of their sales and I have a bar & line chart at the bottom.
My problem is that my table data with the firm names & their other details is getting filtered but my Bar & line chart shows the data for the entire 100 entries its not getting filtered as per my top 25 firms.
I tried using the rank measure in its filters but still not working, but if we select an induvial firm or multiple firms it changes.
Can some please help me here, I want my charts to auto filter the moment I select top 25 button along with my table
If you have a Rank measure created, you can use Filter Type "Top N" by Rank value.
To test the same:
Select the visual created.
on the Filters pane on the right, expand the firm filter.
Under filter type, select the option "Top N" and value as Rank.
Apply filter
Please consider this scenario:
I have a table in Power-BI that's like this:
Country Total Sales
-----------------------------
USA 2000
Canada 1400
Spain 3200
And I want to have a Pie chart in page that if user clicks on every rows, The pie shows sales type for that Country. For Example:
How can I connect these to visuals together?
Thanks
If the two visuals shows data from the same data source, then they will be "connected" by default, i.e. when the user clicks on a row in the table, the pie chart will show only the data from the selected country, and if the user clicks on a sector from the chart, the table will show only the amounts for this category.
If you have a table in your data source like this:
Then add a table in the report with columns Country and Sales like this:
By default amounts will be aggregated as sum, so the table will show sum of Sales per Country. You can change the default summarization of the currently selected field in Modeling tab:
Add a pie chart with Category field in the legend and Sales field for value. Change the value to be shown as percentage from the grand total like this:
Adding Sales field as tooltip will also show the amount when pointing to a sector:
Now when you click on a row in the table, the pie chart will show only the relevant data:
For more information take a look at Change how visuals interact in a Power BI report and Filters and highlighting in Power BI reports articles.
Well, it does not work if the pie chart is top-N pie chart. I open a new issue to the Power BI community to fix it. Here is a description of the issue: Basically, I have a top-N pie chart created for states. But, when I select a city in a table and the city is not in one of those states, the pie chart is not updated to show the state of the selected city. Instead, it remains to show those top-N states with 0% in every slices. This is wrong. It should show the top-N states of the "selected" cities.
I have been having trouble trying to filter on a dimension table that is larger than the fact table.
I am using Power BI for presentation and using an endpoint on an ssas tabular server, I am using direct query.
I am trying to filter on a tag that is sat on the subitem of an item which has a valid column that results to true/false. An example of the dataset could be like this:
https://jsfiddle.net/koLyu4ad/
The Resulting HTML displays sample Data
I want to dynamically filter on sub-item tags, so if I create a slicer with the tags, and you select tag-1, only item 1 and 2 will show, if you select tag 2, only item 2 and 3 will show.