Let’s assume the following structure:
| category 1 | category 2 | category 3|
| yes | no | yes | no | yes | no |
date1 | val1 | val2| val1 | val2| val1| val2|
date2 | val1 | val2| val1 | val2| val1| val2|
date3 | val1 | val2| val1 | val2| val1| val2|
No what I’m trying to do is have a Table Calculation that does val2/val1
for each category
pivot. I have been trying to use pivot_where
but so far to no avail…