Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
58 | |
56 | |
38 | |
29 |
User | Count |
---|---|
75 | |
62 | |
45 | |
40 | |
39 |