You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to filter on the aggregated results? For example after breaking down by Category and Sub-Category, I want to only display rows that have more than N Sales.
This is equivalent to this SQL:
SELECT"Category", "Sub-Category", SUM("Sales")
FROM T
GROUP BY"Category", "Sub-Category"HAVINGSUM("Sales") > N
The content you are editing has changed. Please copy your edits and refresh the page.
Feature Request
Description of Problem:
Is there a way to filter on the aggregated results? For example after breaking down by Category and Sub-Category, I want to only display rows that have more than N Sales.
This is equivalent to this SQL:
Tasks
The text was updated successfully, but these errors were encountered: