Forum Discussion
rocku2008_1985
3 years agoHelper I
split column values based on category
I have a column called Category which has values like: 'Refill On Time Percentage' and 'Refill Volume' and another column called value which gives values in decimal like 0.78 for Refill on Time Pe...
- 3 years ago
rocku2008_1985 Try:
Measure 1 = SUMX(FILTER('Table',[Category] = "Refill On Time Percentage",[Value]) Measure 2 = SUMX(FILTER('Table',[Category] = "Refill Volume",[Value]) - 3 years ago
Greg_Deckler : Thank You!
rocku2008_1985
3 years agoHelper I
Greg_Deckler : Thank You!