Forum Discussion
bdehning
3 years agoPost Prodigy
Matrix Table Measure Needed
I use a Matrix table and I have numeorus values used to create column of data. I need help to write a meaure for one of the columns. I currently have a Field Claim Type and I just used the Fi...
- 3 years ago
Those are 3 measures.
Ashish_Mathur
3 years agoSuper User
Hi,
Does this measure work?
Total = countrows(Data)
Total across all claim types = calculate([Total],all(data[Claim type]))
% by claim type = divide([Total],[Total across all claim types])
Hope this helps.
bdehning
3 years agoPost Prodigy
What is Data in this scenario? Total is my Count Field and Claim Type is the Column.
- Ashish_Mathur3 years agoSuper User
Hi,
Data is the name of the Table.
- bdehning3 years agoPost Prodigy
I logically know what I need to do but having a hard time with
Total = countrows(Data)
Total across all claim types = calculate([Total],all(data[Claim type]))
% by claim type = divide([Total],[Total across all claim types])
Is the above One Measure or mulitple?
I aleady calculate Total.
- Ashish_Mathur3 years agoSuper User
Those are 3 measures.