Hello,
I have a data set that tracks current month hires and terminations, and projected month hires and terminations. Ultimately, I would like to create a table similar to below/attached. The month column is written "09" for September, "10" for October, etc. I am using the summarize tool to pull data only for 09 and then another summarize tool to pull 10, I will then join them together to create the table, but stuck on writing the expression. Thank you in advance.
| Group | 09 Hires | Terminations | | 10 Hires | Terminations |
| A | 6 | 1 | | 2 | 0 |
| B | 5 | 0 | | 1 | 0 |
| C | 3 | 2 | | 3 | 0 |
| Total | 14 | 3 | | 6 | 0 |