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.
Hi Experts,
I have a table say employee which has a attendance flag say flag set to 1 or 0 stating whether they attended the workplace or not. I need to calculate the disctinct count of the flags which are set to 1 or 0 .
DAX measure should calculate count(attended) and count(not attended) and % age not attended = count(not attended)/count(attended) * 100 .
Empid | Flag | date |
101 | 1 | 15.09.2021 |
102 | 1 | 15.09.2021 |
103 | 0 | 15.09.2021 |
104 | 0 | 15.09.2021 |
101 | 1 | 16.09.2021 |
102 | 0 | 16.09.2021 |
105 | 1 | 16.09.2021 |
103 | 1 | 16.09.2021 |
Could you please suggest a DAX to handle this scenario?
Kind regards
Sameer
Solved! Go to Solution.
@deb_power123 Not entirely clear, if you want distinct employees maybe:
Measure Flag is 1 =
COUNTROWS(
DISTINCT(
SELECTCOLUMNS(
FILTER('Table',[Flag] = 1),
"Empid",[Empid]
)
)
)
@deb_power123 Not entirely clear, if you want distinct employees maybe:
Measure Flag is 1 =
COUNTROWS(
DISTINCT(
SELECTCOLUMNS(
FILTER('Table',[Flag] = 1),
"Empid",[Empid]
)
)
)
Try this measure:
% age not attended =
VAR _Att =
CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[ Flag] = 1 )
VAR _NAtt =
CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[ Flag] = 0 )
RETURN
_NAtt / _Att * 100
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos🙏!!
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 |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |