Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
id | name |
| 101 | RAJA |
| 102 | RAM |
| 103 | KUMAR |
| 104 | JOHN |
| 105 | JOTHI |
| 106 | VIMALA |
login data
| ID | DATE | IN OUT |
| 101 | 20-03-2023 | IN |
| 101 | 21-03-2023 | IN |
| 102 | 20-03-2023 | IN |
| 102 | 20-03-2023 | |
| 103 | 21-03-2023 | IN |
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
Solved! Go to Solution.
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"
"Table"
Create a measure. Determine whether there is an absence in the record:
IN_OUT =
IF(
SELECTEDVALUE('login data'[IN OUT]) <> "IN",
1,
0
)
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:
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.
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.
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"
"Table"
Create a measure. Determine whether there is an absence in the record:
IN_OUT =
IF(
SELECTEDVALUE('login data'[IN OUT]) <> "IN",
1,
0
)
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:
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.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 43 | |
| 30 | |
| 24 |