Hi i hope to get some help with the Report -> Table -> group-by function
I have unique items with due dates in my raw data. I have a formula to trim the dates to the start of the month, and in the table tool I have grouped these items up by the group-by function.
How do I only include the first row of columns in my output? Right now it is duplicating all columns for every group, which looks a bit messy.
Raw data, desired out put and current output is pasted below.
Raw data
| Issue | Due date |
| 1 | 3/30/2021 |
| 2 | 4/29/2020 |
| 3 | 7/30/2020 |
| | |
Desired Output
| | Issue | Due date |
| Apr-20 | 2 | 4/29/2020 |
| Jul-20 | 3 | 7/30/2020 |
| Mar-20 | 1 | 3/30/2021 |
Current output
| | Issue | Due date |
| Apr-20 | 2 | 4/29/2020 |
| | Issue | Due date |
| Jul-20 | 3 | 7/30/2020 |
| | Issue | Due date |
| Mar-20 | 1 | 3/30/2021 |