March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello everyone,
It should be simple but I'm a little confused
I have an event table ID_PERSON, CODE_EVENT (Arrival and Exit) , DATE_EVENT
I need to count the people still present with a contextual period filter.
If I filter by period I have people who arrived outside the selected period but are still present.
Thank you for your leads 🙂
Solved! Go to Solution.
Hi,
Please check the attached pbix file.
I am not sure if I understood your question correctly, because I could not know how your data model looks like, however, I tried to create a sample pbix file like the attached.
The DAX measure is in the attached pbix file.
Present ID count measure: =
VAR newtable =
ADDCOLUMNS (
DISTINCT ( 'ID'[ID] ),
"@arrival", CALCULATE ( MAXX ( FILTER ( Data, Data[Event] = "Arrival" ), Data[Date] ) ),
"@exit", CALCULATE ( MAXX ( FILTER ( Data, Data[Event] = "Exit" ), Data[Date] ) )
)
VAR filternewtable =
FILTER (
newtable,
[@arrival] <= MAX ( 'Calendar'[Date] )
&& [@exit] >= MIN ( 'Calendar'[Date] )
)
RETURN
COUNTROWS ( filternewtable )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi ,
Sorry, next I will put pbix files .
Thanks a lot Jihwan_Kim it's so smart and really helpful !!!
Have a great day !
Hi,
Please check the attached pbix file.
I am not sure if I understood your question correctly, because I could not know how your data model looks like, however, I tried to create a sample pbix file like the attached.
The DAX measure is in the attached pbix file.
Present ID count measure: =
VAR newtable =
ADDCOLUMNS (
DISTINCT ( 'ID'[ID] ),
"@arrival", CALCULATE ( MAXX ( FILTER ( Data, Data[Event] = "Arrival" ), Data[Date] ) ),
"@exit", CALCULATE ( MAXX ( FILTER ( Data, Data[Event] = "Exit" ), Data[Date] ) )
)
VAR filternewtable =
FILTER (
newtable,
[@arrival] <= MAX ( 'Calendar'[Date] )
&& [@exit] >= MIN ( 'Calendar'[Date] )
)
RETURN
COUNTROWS ( filternewtable )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi 😅,
Sorry again to ask another question but I still stuck .
In the case I need to have the second highest max arrival date How can i do that ? I tried with RANKX , TOPN without sucess, some advice in this case ?
VAR newtable = ADDCOLUMNS ( DISTINCT ( 'ID'[ID] ), "@arrival", CALCULATE ( MAXX ( FILTER ( Data, Data[Event] = "Arrival" ), Data[Date] ) ), "@exit", CALCULATE ( MAXX ( FILTER ( Data, Data[Event] = "Exit" ), Data[Date] ) ) )
thanks again
Nicomano
@Jihwan_Kim wrote:Hi,
Please check the attached pbix file.
I am not sure if I understood your question correctly, because I could not know how your data model looks like, however, I tried to create a sample pbix file like the attached.
The DAX measure is in the attached pbix file.
Nicomano
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |