Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
date slicer which is of range type, doesn't show values as per the web app filters applied where this power bi report has been embedded
Solved! Go to Solution.
Hi @SwathiJanu ,
As @SaiTejaTalasila said, please check the relationship between the data models.
after create relationship between tables:
Or you can create the following measure to achieve a similar effect.
MEASURE =
VAR min_ =
MIN ( 'Date'[Date] )
VAR max_ =
MAX ( 'Date'[Date] )
RETURN
IF ( MAX ( 'Table'[Date] ) <= max_ && MAX ( 'Table'[Date] ) >= min_, 1, 0 )
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @SwathiJanu ,
As @SaiTejaTalasila said, please check the relationship between the data models.
after create relationship between tables:
Or you can create the following measure to achieve a similar effect.
MEASURE =
VAR min_ =
MIN ( 'Date'[Date] )
VAR max_ =
MAX ( 'Date'[Date] )
RETURN
IF ( MAX ( 'Table'[Date] ) <= max_ && MAX ( 'Table'[Date] ) >= min_, 1, 0 )
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
31 | |
30 | |
22 | |
12 | |
12 |