I have a dataset that needs to go into a shell, but I'm not sure how best to do so. Here's what my dataset and the shell looks like:
Dataset 1
| Organization | Movement Type | Count |
| Org A | Type 1 | 11 |
| Org A | Type 2 | 12 |
| Org B | Type 1 | 16 |
| Org B | Type 2 | 28 |
| Org B | Type 3 | 24 |
| Org C | Type 2 | 28 |
Shell
| Organization | Type 1 | Type 2 | Type 3 | Type 4 | Type 5 | Type 6 | Type 7 |
| Org A | | | | | | | |
| Org B | | | | | | | |
| Org C | | | | | | | |
You can see the movement types in the source dataset are columns in the shell.
Is there a way to put the value in the appropriate org (row)/movement type (column) without transposing the shell? In other words a IF Org = Org AND Movement Type = Column Name THEN Count?
I'd like to keep the shell as is because it's easier to see what's going on, create custom formulas (some of the type fields are calcs of the previous types), etc.