rushdenx1;
In original macro, Origin was being reported with "ARRIVED ON TIME", not "DEPARTED ON TIME"
I changed it in this file. If it was right then you will need to change the 3rd argument from "J" to "L".
Here's the file Copy of Performance Data Dump4.xls. I changed the arguments for Count_Column()
Because it sorts the data on the sheet, you will need to make sure that the last call is the one that leaves the data sorted the way you want.
Here's an example of how to call it.
Count_Column sh, "F", "J", 10, "AB", "Dep", iLastColumn
sh - sheet being counted
"F" - column to count
"J" - On Time column
10 - How late can train be to be considered on time
"AB" - column to put results into
"Dep" - column heading to put into "% ??? On Time"
iLastColumn is a variable that stores the last column used,
so that FormatFilterSortAndPasteToSheet() can autofit enough columns
Bookmarks