Forum Discussion
PaulPalkowski
Helper II
2 years agoMatrix Column Sum
I have a very simple table from excel Animal Food Tiger Fish Elephant Veggies Bear Fish Monkey Tiger Combo Elephant Fish Bear Monkey Veggies Tiger Be...
- 2 years ago
Try this measure:
DC-Animals = SUMX ( SUMMARIZE ( Sample2, Sample2[Animal], Sample2[Food] ), CALCULATE ( DISTINCTCOUNTNOBLANK ( Sample2[Animal] ) ) )
DataInsights
Super User
2 years ago
Try this measure:
DC-Animals =
SUMX (
SUMMARIZE ( Sample2, Sample2[Animal], Sample2[Food] ),
CALCULATE ( DISTINCTCOUNTNOBLANK ( Sample2[Animal] ) )
)
PaulPalkowski
Helper II
2 years agoPerfect!!