Forum Discussion
Anonymous
6 years agoNot applicable
Matrix report trend value
I have a matrix report which has following values. But , need to show trend as seperate ICON at the top of the Matrix report. Trend should be Postive ,if All are Zeros in the difference value ...
- 6 years ago
Anonymous , Try like
if( countx(filter(summarize(Table, Table[state], "_1", sumx(Table, if(Table[source]-Table[Target]<0,1,0))),[_1]>0),[state]) >0, "Negative","Positive") - 6 years ago
Anonymous , Data is grouped at the state level first and then filtered and then aggregated gain
- Anonymous6 years ago
Thanks a lot. Its working perfect after making the changes as per my requriment.
Anonymous
6 years agoNot applicable
Thank,Amit. Its working somehow. But need to do through testing for my entire report. Can you please explain me this syantax what is happening here?
amitchandak
6 years agoSuper User
Anonymous , Data is grouped at the state level first and then filtered and then aggregated gain
- Anonymous6 years agoNot applicable
Thanks a lot. Its working perfect after making the changes as per my requriment.