Forum Discussion
OlegP
7 years agoNew Member
Matrix Min&Max by different aggregation in the same table
I would appreciate a little help on the following topics
- Create Conditional Formatting for min & max values for each row for each aggregation (group by)
- Add new calc column at the end of the pivot table (for example STDV for each row) for each aggregation (group by)
- File Here
- Anonymous7 years ago
HI OlegP ,
You can try to use following measure formula to replace original value field and enable conditional formatting on it.
Measure = IF ( ISINSCOPE ( Sheet1[TypeString] ) && ISINSCOPE ( Sheet1[GroupNLPRuleName] ) && ISINSCOPE ( Sheet1[NLPRuleName] ), COUNT ( Sheet1[ExpertOperationID] ), IF ( COUNT ( Sheet1[ExpertOperationID] ) > 0, STDEVX.S ( SUMMARIZE ( Sheet1, [TypeString], [GroupNLPRuleName], [NLPRuleName], "Count", COUNT ( Sheet1[ExpertOperationID] ) ), [Count] ) ) )Regards,
Xiaoxin Sheng
2 Replies
- OlegPNew Member
I would appreciate for help on the following topics
- Create Measure (for conditional formatting) for min & max values for each row for each aggregation (group by) in the matrix.
- Add new calc column at the end of the matrix (for example STDV for each row) for each aggregation (group by)
- AnonymousNot applicable
HI OlegP ,
You can try to use following measure formula to replace original value field and enable conditional formatting on it.
Measure = IF ( ISINSCOPE ( Sheet1[TypeString] ) && ISINSCOPE ( Sheet1[GroupNLPRuleName] ) && ISINSCOPE ( Sheet1[NLPRuleName] ), COUNT ( Sheet1[ExpertOperationID] ), IF ( COUNT ( Sheet1[ExpertOperationID] ) > 0, STDEVX.S ( SUMMARIZE ( Sheet1, [TypeString], [GroupNLPRuleName], [NLPRuleName], "Count", COUNT ( Sheet1[ExpertOperationID] ) ), [Count] ) ) )Regards,
Xiaoxin Sheng