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 moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
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) ) )
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
91 | |
86 | |
83 | |
76 | |
49 |
User | Count |
---|---|
145 | |
140 | |
109 | |
68 | |
55 |