Chart for approaching Due Dates

Copper Contributor

I have following columns in my data and would like to answer these question by creating a chart out of it:

Questions: 

  1. Need a chart which shows How many tickets are approaching due dates?
  2. Descending list of tickets approaching due dates i.e tickets with less days to due dates to tickets with more days to due dates?
  3. How and which tickets have already crossed the due date?
  4. How and which tickets have due date today?
Ticket IDTicket TypeCreated DateDue Date
1Project09/02/2011/10/2020
2Task09/03/2011/10/2020
3Incident09/03/2010/3/2020
4Incident09/03/2010/15/2020
5Project09/04/2011/13/2020
6Task09/04/2010/27/2020
7Project09/04/2011/05/2020 

*last ticket has due date as  of today. 

 

Can you please me with this?

@Rajesh_Sinha 

1 Reply

@JayJoshi 

 

To fix the issue you need to summarize the data by using one Helper Column, and the name given to it is STATUS.

 

Rajesh-S_0-1604654552695.png

How it works:

  • Formula in cell Y2:

 

=IF(X2>TODAY(),"Due Date Approachig",IF(X2=TODAY(),"Due Today","Due Date Crossed"))

 

  • Create Pivot Tale.

Where Ticket Type in Row, Status in Column and Due Date are as Value (Count).

  • Now create a Combo Pivot Chart.
 

Rajesh-S_0-1604655321233.png

 

N.B.

  • Both PT & Pivot Chart can be filtered on Ticket Type and Status.