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!View all the Fabric Data Days sessions on demand. View schedule
I have 2 tables, named Table_Tickets and Dim_Calendar, like the following:
I have created a chart, like the following:
When I drill-through a date (for example, 2020-11-05) in this chart, the page just show me the Id_Ticket = 2, because this ticket was created in "2020-11-05", but this is not right to my case, I need the page show me Id_Ticket = 1 and 2, because ticket 1 was closed (and resolved too) in "2020-11-05" and ticket 2 was created in "2020-11-05", in other words, when I drill a date, I need to see all the tickets with "action" in this date, all the tickets that was created in this date OR was closed in this date OR was resolved in this date, not just created.
Someone know how I achive this?
Solved! Go to Solution.
Hey @amitchandak, using your ideia I have changing my model to 3 relationships deactivated and created this measure:
Ind_ShowOrHide =
VAR DaySelec = SELECTEDVALUE(Dim_Calendar[Date])
VAR Create = SELECTEDVALUE(Table_Tickets[Date_Creation])
VAR Closed = SELECTEDVALUE(Table_Tickets[Date_Closed])
VAR Resolved = SELECTEDVALUE(Table_Tickets[Date_Resolved])
RETURN
IF(Create= DaySelec || Closed = DaySelec || Resolved = DaySelec ,
1,
0
)
And I put this measure on my table and made a permanent filter to Ind_ShowOrHide = 1 and it worked.
Thanks for helping.
@gluizqueiroz , Refer my HR Blog - https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
or between dates blog
Hey @amitchandak, using your ideia I have changing my model to 3 relationships deactivated and created this measure:
Ind_ShowOrHide =
VAR DaySelec = SELECTEDVALUE(Dim_Calendar[Date])
VAR Create = SELECTEDVALUE(Table_Tickets[Date_Creation])
VAR Closed = SELECTEDVALUE(Table_Tickets[Date_Closed])
VAR Resolved = SELECTEDVALUE(Table_Tickets[Date_Resolved])
RETURN
IF(Create= DaySelec || Closed = DaySelec || Resolved = DaySelec ,
1,
0
)
And I put this measure on my table and made a permanent filter to Ind_ShowOrHide = 1 and it worked.
Thanks for helping.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!