Forum Discussion
tkavitha911
Helper III
2 years agoto display different Levels
I want to visualize the hierarchical levels of the data using a matrix visual, displaying Channel level percentage, SPGR level percentage, and BGR level percentage based on the SFA%. SFA = IF(TAE>=S...
- Anonymous2 years ago
Hi tkavitha911 ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) We can create a measure.
SFA % = IF(SUM('Table'[TAE])>=SUM('Table'[Sales]),0,1-DIVIDE(SUM([TAE]),SUM([Sales])))(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi tkavitha911 ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) We can create a measure.
SFA % = IF(SUM('Table'[TAE])>=SUM('Table'[Sales]),0,1-DIVIDE(SUM([TAE]),SUM([Sales])))
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.