Replies: 1 comment 2 replies
-
This is what adding this column as a {
"plugin": "Datagrid",
"group_by": [
"composite_key"
],
"split_by": [
"month"
],
"expressions": {
"composite_key": "concat(\"contract_no\",' ',\"company\")"
},
"columns": [
"qty"
]
} ![]() |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Feature Request
When splitting extract out common sub-columns instead of repeating them for each value.
Description of Problem:
I have this dataset
I group by contract no, split by month and then aggregate by two cols: unique(company) and unique(qty).
Here's roughly what i see right now in perspective:
,Nice but since company name doesn't change per month, the ideal view is:
This problem really becomes worse when u have multiple of these cols (in this dataset, I have infact dozens of columns which don't change per month, repeating them makes the whole split too wide).
Because of this problem I'm forced to almost never use splits in perspective.
Potential Solutions:
Beta Was this translation helpful? Give feedback.
All reactions