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.
Hello,
What would be the dax formula so that it counts the total but not the sum of the row but the sum of the users who do have some data
Example:
On 12/30/2022 there are three users who have data, the total should be 3 (in this case it matches the sum but does not do it correctly)
On 12/29/2022 there are four users who have data, the total should be 4
like this with all the rows.
Thank you
@Syndicate_Admin , Assumer you current measure is M1
then create a measure like
if(isinscope(Table[User]), [M1] , countx(values(Table[User]), if(not(isblank([M1])) , [User], blank() ) ) )
Well, it worked for me but I see that things are more difficult than I thought. The fact is that now I want to divide the rows by ADDing all the values and dividing it by the number of rows there are.
According to the screenshot I attached it would be:
= add values (63 if I counted correctly) / count rows (19)
Thank you.
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 |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
81 | |
67 | |
62 | |
46 | |
45 |