Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Anybody experienced this behaviour where the advanced date filter filters out too many rows?
SQL: SELECT * FROM table WHERE startdate <= '2022-05-31';
Filter: none
=> 24.207 rows
SQL: SELECT * FROM table;
Filter: startdate is on or before 5/31/2022 12:00:00 AM
=> 24.195 rows
Solved! Go to Solution.
@travelwithme , You use a visual level filter or create a measure
countrows(filter(Table, Table[date] <= date(2022,5,31) ) )
@travelwithme , You use a visual level filter or create a measure
countrows(filter(Table, Table[date] <= date(2022,5,31) ) )
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |