I have very little experience with pivot tables, too. On the few occasions when I have used a pivot table for something like this, I ended up adding helper columns to the raw data table that would extract month, day, and year information from the date columns
...-- hire date -- hire month -- hire year -- hire month/year -- others -- separation date -- separation month -- separation year -- separation month/year -- others as needed
formulas to compute desired "categories"
hiredate1 -- =month(hiredate1) -- =year(hiredate1) -- =date(hireyear1,hiremonth1,1) -- ... -- separationdate1 -- =month(separationdate1) -- =year(separationdate1) -- =date(separationyear1,separationmonth1,1) --...
With these helper columns added, it should be fairly easy to use a pivot table to count month, year, or month/year hires and separations.
For help on the various date functions used, or to explore using the COUNTIFS() function, this page links to help files for all of Excel's built in functions (COUNTIFS() is under statistical functions). https://support.office.com/en-us/art...rs=en-US&ad=US
Bookmarks