Forum Discussion
android1
10 years agoPost Patron
Counting text values in 2 different Calculated Columns
Hi, I have 2 calculated Columns -> InFull = IF([ActualDuration]<[ScheduledDuration]*.85,"Not In Full","In Full") & Punctuality = IF (OTIF[DutyTimeFrom]<OTIF[TimeFrom]-1/24*.25,"Early",IF (OTIF[...
Sean
10 years agoCommunity Champion
android1 This should work...
In Full & On Time =
COUNTROWS (
FILTER ( 'OTIF', 'OTIF'[Punctuality] = "On Time" && 'OTIF'[InFull] = "In Full" )
)android1
10 years agoPost Patron
Hi Sean,
I was sure when I saw your && suggestion that it was something I had already tried.
But whatever, yours works perfectly. The Matrix option is very interesting.
Thanks a million for this.