Hello,
In my table visual, I have a date column "DATE_ADD". I want to apply filter for this visual to show data for the first 20 days of the current month. Any tips to acheive this?
Thanks
Solved! Go to Solution.
Hi, @power_user_123
You can try the following methods.
Measure =
IF (
MONTH ( SELECTEDVALUE ( 'Table'[Date] ) ) = MONTH ( TODAY () )
&& DAY ( SELECTEDVALUE ( 'Table'[Date] ) ) <= 20,
1,
0
)
Put Measure in the view's Filter and set it equal to 1.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @power_user_123
You can try the following methods.
Measure =
IF (
MONTH ( SELECTEDVALUE ( 'Table'[Date] ) ) = MONTH ( TODAY () )
&& DAY ( SELECTEDVALUE ( 'Table'[Date] ) ) <= 20,
1,
0
)
Put Measure in the view's Filter and set it equal to 1.
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
109 | |
62 | |
45 | |
28 | |
24 |
User | Count |
---|---|
137 | |
94 | |
80 | |
46 | |
40 |