Forum Discussion
DarrenW
2 years agoFrequent Visitor
Showing direction arrows on hierarchical data
I have a set of data with a custom hierarchy (anonymised sample below What I need to be able to do is display the data in a grid with a final column that shows the upward or downward movement at ...
DarrenW
2 years agoFrequent Visitor
PS I tried this too
↕ = SWITCH(
TRUE,
Sum(Main[Change])=0," ",
Sum(Main[Change])<0,UNICHAR(129095),
Sum(Main[Change])>0,UNIChar(129093))
- DarrenW2 years agoFrequent Visitor
PPS the CF I created to colour the arrows red or green seems to work fine so I'm thinking it's the 'first' summarization that's causing the problem