Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
39 | |
27 | |
21 | |
21 | |
10 |
User | Count |
---|---|
41 | |
36 | |
35 | |
20 | |
14 |