How to aggregate event dates based on aggregated table?
I have a table that aggregates disables/reenables events in the following format: Disabled Date Enabled Date Count 01/01 01/01 5 01/01 02/01 2 03/01 05/01 1 04/01 05/01 5 and want to build a report that aggregates the number of disables and reenables per day: Date Enables Disables 01/01 5 7 02/01 2 0 03/01… Read More How to aggregate event dates based on aggregated table?