Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
rajasekar_o
Helper V
Helper V

Name list of absent

 

id

name 
101RAJA
102RAM
103KUMAR
104JOHN
105JOTHI
106VIMALA

login data

IDDATEIN OUT
10120-03-2023IN
10121-03-2023IN
10220-03-2023IN
10220-03-2023 
10321-03-2023IN 
   

i need help,
i want name list of absent,
if the employee dont have "IN" in ( login data in out column)  then emloyee absent 
i tryd but not get correct answer 
empmaster data

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @rajasekar_o

 

@amitchandak Good share!

 

I have provided other ways to solve this problem, please try the following operations:

 

Here's some dummy data

 

"login data"

vnuocmsft_0-1706595855009.png

 

"Table"

vnuocmsft_1-1706595873811.png

 

Create a measure. Determine whether there is an absence in the record:

 

IN_OUT = 
    IF(
        SELECTEDVALUE('login data'[IN OUT]) <> "IN", 
        1, 
        0
    )

 

 

vnuocmsft_2-1706596036479.png

Create a measure. Find the list of absentees:

 

Name = 
var _id = 
    CALCULATE(
        SUM('Table'[id]), 
        FILTER(
            ALL('login data'), 
            [IN_OUT] = 1
        )
    )
RETURN 
    CALCULATE(
        MAX('Table'[name]), 
        FILTER(
            'Table',
        'Table'[id] = _id
        )
    )

 

 

Here is the result:

vnuocmsft_3-1706596210052.png

 

If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.

 

Regards,

Nono Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @rajasekar_o 

 

If my answer is correct, please mark it as accept as solution.

 

Regards,

Nono Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi @rajasekar_o

 

@amitchandak Good share!

 

I have provided other ways to solve this problem, please try the following operations:

 

Here's some dummy data

 

"login data"

vnuocmsft_0-1706595855009.png

 

"Table"

vnuocmsft_1-1706595873811.png

 

Create a measure. Determine whether there is an absence in the record:

 

IN_OUT = 
    IF(
        SELECTEDVALUE('login data'[IN OUT]) <> "IN", 
        1, 
        0
    )

 

 

vnuocmsft_2-1706596036479.png

Create a measure. Find the list of absentees:

 

Name = 
var _id = 
    CALCULATE(
        SUM('Table'[id]), 
        FILTER(
            ALL('login data'), 
            [IN_OUT] = 1
        )
    )
RETURN 
    CALCULATE(
        MAX('Table'[name]), 
        FILTER(
            'Table',
        'Table'[id] = _id
        )
    )

 

 

Here is the result:

vnuocmsft_3-1706596210052.png

 

If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.

 

Regards,

Nono Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@rajasekar_o , Please find the attached file after signature,

 

amitchandak_0-1706515160558.png

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.