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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.