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,
I would like to display the number of rows in my table in the total row under a string column.
I have created a measure like this:
BuildingAndTotal = IF(HASONEVALUE(FactSales[Building]),SELECTEDVALUE(FactSales[Building]),COUNTROWS(FactSales))
But when I use only this measure, the Year column and TotalSales in my table, the detail of the sites disappears.
I would like to keep this detail, how to do ?
In the Expected table on the screenshot, I have left the Buidling column but I have hidden it. I would like to know if it is possible to have the same result as this table without leaving this column?
And I would also like the number of rows to appear as a whole number without the decimals. Is this possible?
Thank you for your help,
Victor
Solved! Go to Solution.
Hi,
You can make your dax work with a small change,
Use ISFILTERED instead of HASONEVALUE:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
Hi,
You can make your dax work with a small change,
Use ISFILTERED instead of HASONEVALUE:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
Thank you for your reply, will try!
In your screenshot your using a different measure from your text :
BuildingAndTotal = IF(ISFILTERED(FactSale[Year]),MAX(FactSale[Building]),COUNTROWS(FactSale))
Could you explain why you use ISFILTERED on Year column and why you use MAX instead of SELECTEDVALUE ? To be able to get the correct syntax first try next time.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
10 | |
8 |