Forum Discussion
sccoleman1189
7 years agoHelper I
Adding multiple columns to matrix table
I am using a matrix table to create a table that shows the number of jobs completed by day. I am using two seperate tables to compose this data. My row information is coming from my order table ...
- 7 years ago
You may try to use ISFILTERED function.Here is the similar post for your reference.
Ok on = IF ( ISFILTERED ( Calendar[Date] ), [Measure], [OK on Arrival] )
Regards,
hnguy71
7 years agoSuper User
You'll have to add a measure to the end of our matrix visual to accomplish that. What is your logic for what can be Okay on Arrival?
sccoleman1189
7 years agoHelper I
OK on Arrival = CALCULATE(COUNT('FSA Order Info'[OK on Arrival v1]),'FSA Order Info'[OK on Arrival v1]="1")
Ok on Arrival v1 is a conditional column that I created based on specific specifications.
Thanks!
- hnguy717 years agoSuper User
Convert that to a measure and add that into the Values field of a matrix visual
- sccoleman11897 years agoHelper I
Still a little confused. Convert what to a measure?
Ok on arrival is a measure. Convert the conditional column to a measure?
- hnguy717 years agoSuper User
Yeah. So it would be something like this:
OK on Arrival = CALCULATE(COUNTROWS([OK on Arrival v1]), [OK on Arrival v1] = "1")
Also, I'm assuming that your calculated column is a Text Data Type since you're putting the number 1 in quotation marks.