Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
I have a table I created and it has two dates in it: Created and Modified.
I have a single page of visuals. I Know I can create two slicers for the dates but I would like the user to only have to change the date on one slicer. Then Depending on the visual use either Created or Modified dates depending on visual.
Any thoughts on best way to do this. Can I hide a slicer B and base its values on Slicer A?
Thanks in Advance,
Justin
Hi @Anonymous,
I would suggest to have a separate date table. You create two relationships to created and modified date.
Only one can be active. But you can then create measures that use the relationship of choice.
For example:
CALCULATE(
SUM(Amount),
USERELATIONSHIP(MainTable[CreatedDate],Calendar[Date])
)
Hope this helps (and works ^^)