Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi All,
I have requirement where i need to show 2 visuals in page
1. Bar graph which shows summary sales by category
2. Once User clicks on any of the BAR in above visual then detail table should appear with filtered data for selected category.
Example: If user clicks on BIKES in above visual then below table should appear in page.
NOTE: The detail table should appear only if user click on any of the BAR in first visual else it should not appear in page.
is it possible to achieve this functionality? or any work arround?
Please Help
TIA
Suyog
Solved! Go to Solution.
Hi @suyogbi ,
There are 2 ways I can think of for achieving this:
Thanks,
Pragati
Hi, @suyogbi
Try to create a measure like below, then show items when the value is 1 in the filter pane
isFilterd =
VAR _total =
CALCULATE ( DISTINCTCOUNT ( 'financials'[Product] ), ALL ( financials ) )
VAR _current =
CALCULATE ( DISTINCTCOUNT ( financials[Product] ), ALLSELECTED ( financials ) )
VAR _if =
IF ( _current <> _total, 1 )
RETURN
_if
so the result will be like this:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks a ton @Pragati11 @v-angzheng-ms Both solutions fulfilled by requirement.
Thanks for your feedback😀, If my post helps, then could you please consider Accept it as the solution? Glad to help.
Hi, @suyogbi
Try to create a measure like below, then show items when the value is 1 in the filter pane
isFilterd =
VAR _total =
CALCULATE ( DISTINCTCOUNT ( 'financials'[Product] ), ALL ( financials ) )
VAR _current =
CALCULATE ( DISTINCTCOUNT ( financials[Product] ), ALLSELECTED ( financials ) )
VAR _if =
IF ( _current <> _total, 1 )
RETURN
_if
so the result will be like this:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @suyogbi ,
There are 2 ways I can think of for achieving this:
Thanks,
Pragati
User | Count |
---|---|
131 | |
71 | |
70 | |
58 | |
54 |
User | Count |
---|---|
194 | |
95 | |
65 | |
62 | |
53 |