I don't understand exactly what I'm missing as this seems easy enough.
I'm trying to make the Zone values into their own columns and have the Counts under that..
I'm using the Transpose Tool but every combo isn't giving me the results I need.
Current Data
| Counts | Zone | MDT | |
| 25 | Zone1 | 2023-07-31 01:00:00 | |
| 39 | Zone2 | 2023-07-31 02:00:00 | |
| 45 | Zone2 | 2023-07-31 03:00:00 | |
| 564 | Zone1 | 2023-07-31 04:00:00 | |
| 65 | Zone2 | 2023-07-31 05:00:00 | |
| 85 | Zone1 | 2023-07-31 06:00:00 | |
| 65 | Zone2 | 2023-07-31 07:00:00 | |
Goal
| Zone1 | Zone2 | MDT |
| 25 | 0 | 2023-07-31 01:00:00 |
| 0 | 39 | 2023-07-31 02:00:00 |
| 0 | 45 | 2023-07-31 03:00:00 |
| 564 | 0 | 2023-07-31 04:00:00 |
| 0 | 65 | 2023-07-31 05:00:00 |
| 85 | 0 | 2023-07-31 06:00:00 |
| 0 | 65 | 2023-07-31 07:00:00 |