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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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

 

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.