The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi, how would you filter a detail table, where a user chooses a start and end date from a drop down, and all you want to see are the records that fall within that range?
Create a measure like:
ShowRecord = IF(Table2[Date] >= [StartTime] && Table2[Date] <= [EndTime], 1)
and then use that as a visual-level filter on the table.