Forum Discussion
Dynamic calculation
RonaldvdH , try something like this
Aantal HP plastic Gereed = if(isfiltered('Civiel/HAS planning'[Completion date]) Countrows(
Filter(
'Civiel/HAS planning',
'Civiel/HAS planning'[gesloten]<>BLANK()
&&'Civiel/HAS planning'[activiteit]="Civiel"
&& not(isblank('Civiel/HAS planning'[Completion date]))
)
) , Countrows(
Filter(
'Civiel/HAS planning',
'Civiel/HAS planning'[gesloten]<>BLANK()
&&'Civiel/HAS planning'[activiteit]="Civiel"
&& (isblank('Civiel/HAS planning'[Completion date]))
) ) )
- RonaldvdH4 years ago
Post Patron
amitchandak thanks for your help thus far but we are not there yet. It seems that it works when I set my slider to change the period but when I do NOT select anythin it should show all but now it return a BLANK value
Aantal HP plastic Gereed = if(ISFILTERED('Civiel/HAS planning'[begin]), Countrows( Filter( 'Civiel/HAS planning', 'Civiel/HAS planning'[begin]<>BLANK() &&'Civiel/HAS planning'[activiteit]="Civiel" && not(isblank('Civiel/HAS planning'[gesloten])) ) ) , Countrows( Filter( 'Civiel/HAS planning', 'Civiel/HAS planning'[gesloten]<>BLANK() &&'Civiel/HAS planning'[activiteit]="Civiel" && (isblank('Civiel/HAS planning'[gesloten])) ) ) )- RonaldvdH4 years ago
Post Patron
amitchandak you think you can help me figure this problem out ?
- RonaldvdH4 years ago
Post Patron
amitchandak any ideas ?