Hello all,
I have information on a number of invoices and their payment dates. I am looking to create a combination chart, a stacked bar chart showing the percentage of invoices paid early vs late & another axis for the line graph to show the total number of invoices (observations) per year. The invoices are paid late if dayslate > 0.
clear
input int(Net_due_date Paymentdate dayslate) float year
15091 15244 153 2001
15274 15285 11 2001
15005 15245 240 2001
15012 15013 1 2001
14992 15001 9 2001
15323 15354 31 2001
15197 15217 20 2001
15266 15273 7 2001
15246 15246 0 2001
14987 14992 5 2001
15168 15188 20 2001
15012 15013 1 2001
15614 15631 17 2002
15690 15733 43 2002
15687 15733 46 2002
15614 15632 18 2002
15680 15678 -2 2002
15480 15827 347 2002
15450 15445 -5 2002
15650 15704 54 2002
end
Let me know if there is a way for me to do this or if you need anymore information.
Kind regards,
Kayleigh
I have information on a number of invoices and their payment dates. I am looking to create a combination chart, a stacked bar chart showing the percentage of invoices paid early vs late & another axis for the line graph to show the total number of invoices (observations) per year. The invoices are paid late if dayslate > 0.
clear
input int(Net_due_date Paymentdate dayslate) float year
15091 15244 153 2001
15274 15285 11 2001
15005 15245 240 2001
15012 15013 1 2001
14992 15001 9 2001
15323 15354 31 2001
15197 15217 20 2001
15266 15273 7 2001
15246 15246 0 2001
14987 14992 5 2001
15168 15188 20 2001
15012 15013 1 2001
15614 15631 17 2002
15690 15733 43 2002
15687 15733 46 2002
15614 15632 18 2002
15680 15678 -2 2002
15480 15827 347 2002
15450 15445 -5 2002
15650 15704 54 2002
end
Let me know if there is a way for me to do this or if you need anymore information.
Kind regards,
Kayleigh
Comment