Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
User | Count |
---|---|
47 | |
26 | |
21 | |
19 | |
19 |
User | Count |
---|---|
53 | |
47 | |
24 | |
20 | |
19 |