Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am trying to create a Power BI Dashboard and am running into a road block.
We have monthly events that advisors can attend. These events relate to one, or a series of, products.
Then I would like to show 3 charts/graphs:
I have the following tables:
Event Key = lookupvalue('Event Products'[Event Key], 'Event Products'[Linked Fund], 'sales'[Product code])
As an example this gives a 1 or 2 if the Product code links to the event. So Event 1 links to product code A10 and A101 and event 2 links to A11. A12 is not highlighted at all, so the event key is empty.
My issue is displaying all sales related to the highlighted funds since there is not relationship. My slicer is on the “Events[Event Key]”. When I select an event: how can I filter on the measure sales[Event Key] when it contains the same value as the slicer?
My thought is if I could add a measure to the sales table I would like display a 1 or 0 if the row in the sales table is linked to the event in the slicer. My issue is referencing the selectedvalue or a column in Event.
Event Key Match = CALCULATE (
MIN ( 'sales'[Event Key] ),
FILTER (
sales,
and('sales'[Product code] IN VALUES ( 'Event Products'[Linked Fund]), 'sales'[Event Key] = Selectedvalue(Event[Event Key] ) )
)
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 35 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 79 | |
| 37 | |
| 27 | |
| 25 |