Forum Discussion
mohitchugh
7 years agoFrequent Visitor
Row By Row Division
Hi All, I have some data set like Categories and type wise and analysis the gap%. Thanks in advance. Input: Category Type Week 1 Week 2 Week 3 K Add ...
- 7 years ago
Hi mohitchugh
Open Edit queris,
unpivot columns "week1"~"week3"
Rename column name "Attribute" to "week"
Close&&apply
Create two measures
gap = CALCULATE ( SUM ( Table1[Value] ), FILTER ( ALLEXCEPT ( Table1, Table1[Category], Table1[week] ), Table1[Type ] = "Sub" ) ) / CALCULATE ( SUM ( Table1[Value] ), FILTER ( ALLEXCEPT ( Table1, Table1[Category], Table1[week] ), Table1[Type ] = "Add" ) ) Measure_value = IF(HASONEVALUE(Table1[Type ]),SUM(Table1[Value]),FORMAT([gap],"0%"))Add [Measure_value] in a matrix as below
Best Regards
MaggieCommunity Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
danielpenafiel
7 years agoFrequent Visitor
The solutions for your mayor request is posible doing a previous table tranformation using pivot/unpivot to types as Colums and weeks as rows