Forum Discussion
Sort amounts into groups/columns
- 2 years ago
Hi BlueSkyX
If Due Days is a column you can use bins, please refer to the linked tutorial :
https://tic.li/c/51714/3Dm72QxG6JIf it is a measure you can use workarounds of the segmentation:
https://www.youtube.com/watch?v=0KBR-aEVaxk
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
- 2 years ago
Thanks for your support!
Meanwhile I adjusted the data table a little bit and integrated xthe calculation of the due days with a measures. This step enables the possibility to insert the groups by "conditional column". Maybe not the professional way but for me the most logical one. 😉
Hi BlueSkyX
You can consider to create a calculated column with siwtch() funcion.
e.g
Type =
SWITCH (
TRUE (),
[Due Days] >= 1
&& [Due Days] <= 5, "Due 1-5",
[Due Days] >= 6
&& [Due Days] <= 10, "Due 6-10",
[Due Days] >= 11, "Due >11"
)
Then you can put them into a matrix visual
e.g
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.