I have a dataset that contains a list of items with a unique id, create date, and close date. How do I get a pivot table to have dates by day in the left most column, a count of records created in that day in the second column, a count of records closed in the third column, and the difference in the third.
Date. Created. Closed. Diff
1/1/2019. 150. 100. 50
1/2/2019. 100. 150. -50
Date. Created. Closed. Diff
1/1/2019. 150. 100. 50
1/2/2019. 100. 150. -50