March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
36 | |
27 | |
19 | |
11 | |
8 |
User | Count |
---|---|
52 | |
43 | |
25 | |
12 | |
11 |