Forum Discussion
Marinus
Helper I
10 months agoCount blank rows if blank in 2 columns
I want to count blank rows, but only if blank in the columns 'BD Conflictenexports'[Acc.Pl.Toel.] and 'BD Conflictenexports'[Acc.Vd.Toel.]. Can you tell me the correct formula for this measure?
- 10 months ago
Download example file with this code
Try this
Count Blank Rows := COUNTROWS ( FILTER ( 'BD Conflictenexports', ISBLANK ( 'BD Conflictenexports'[Acc.Pl.Toel.] ) && ISBLANK ( 'BD Conflictenexports'[Acc.Vd.Toel.] ) ) )Regards
Phil
PhilipTreacy
Super User
10 months ago
Download example file with this code
Try this
Count Blank Rows :=
COUNTROWS (
FILTER (
'BD Conflictenexports',
ISBLANK ( 'BD Conflictenexports'[Acc.Pl.Toel.] )
&& ISBLANK ( 'BD Conflictenexports'[Acc.Vd.Toel.] )
)
)
Regards
Phil