New to analytics and liking what see so far.. Just have a basic question that I'm hoping there is a solution for.
I'm looking for a way to combine the reopened data into the open row so I don't have an extra row in my charts.
Hey Bobby! You could apply a custom formula to the "Status" column to use the following Case statement to change the label of 'Reopened' to be 'Open':
CASE WHEN "Status" = 'Reopened' THEN 'Open' ELSE "Status" END
Once the 'Reopened' status is changed to 'Open' then you can Group & aggregate the data to sum the "No of Tasks" column for the two 'Open' statuses. I hope that helps clarify, but let me know if you run into any issues!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.