Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
23 | |
20 | |
10 | |
9 | |
7 |
User | Count |
---|---|
44 | |
29 | |
18 | |
18 | |
15 |