Forum Discussion
Beginner level - SUMX - FILTER - SELECTEDVALUE
Hey guys,
Thanks a lot already for the one who is willing to help me.
As you can see in the screenshot, in the table we're having a personnel number (PERNR) , a begin date (BEGDA), an end date (ENDDA) and stating if a user is active or not (STAT2 - if stat 2 = 3 then user is active, if not equal to 3 then he is not active).
The measure I created at this moment looks like this :
I hope someone can help me out with this question.
Thanks a lot again.
Hi StefRenneboog91 ,
I found that your [BEGDA] and [ENDDA] column is a whole number type instead of a date type so I would suggest you to change these data type of columns to date firstly.
Then, based on your description, you can create this measure to count:
Count = VAR _count = CALCULATE ( COUNT ( 'Table'[PERNR] ), FILTER ( ALL ( 'Table' ), 'Table'[STAT2] = 3 && 'Table'[BEGDA] <= SELECTEDVALUE ( 'Date'[Date], TODAY () ) && 'Table'[ENDDA] >= SELECTEDVALUE ( 'Date'[Date], TODAY () ) ) ) RETURN IF ( ISBLANK ( _count ), 0, _count )Attached a sample file in the below, hopes to help you.
Beginner level - SUMX - FILTER - SELECTEDVALUE.pbix
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- amitchandak
Super User
StefRenneboog91 , see my HR blog on the related topic can help
- v-yingjl
Community Support
Hi StefRenneboog91 ,
I found that your [BEGDA] and [ENDDA] column is a whole number type instead of a date type so I would suggest you to change these data type of columns to date firstly.
Then, based on your description, you can create this measure to count:
Count = VAR _count = CALCULATE ( COUNT ( 'Table'[PERNR] ), FILTER ( ALL ( 'Table' ), 'Table'[STAT2] = 3 && 'Table'[BEGDA] <= SELECTEDVALUE ( 'Date'[Date], TODAY () ) && 'Table'[ENDDA] >= SELECTEDVALUE ( 'Date'[Date], TODAY () ) ) ) RETURN IF ( ISBLANK ( _count ), 0, _count )Attached a sample file in the below, hopes to help you.
Beginner level - SUMX - FILTER - SELECTEDVALUE.pbix
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.