Hello!
I have data in the following format:
| Values | Date |
| 0 | 1/1/16 |
| 3 | 1/1/16 |
| 9.3 | 1/1/16 |
| 0 | 2/1/16 |
| 0 | 2/1/16 |
| 1 | 2/1/16 |
| 0 | 3/1/16 |
| 0 | 3/1/16 |
What I'd like is to SUM the data by date, and then remove any rows where the sum is 0 or less. So in the table above, all the rows with the date as 3/1/16 would be removed, as their sum is 0. All of the rows with a date of 2/1/16 (with a sum of 1) would remain.
Can anyone please advise how to achieve this? I'm coming from Tableau and finding it hard to reconceptualise behaviour out of calculated fields.