Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
I am making a table (visual), which has a column like this:
354
254
765
375
My question : how can I show the sum of the amount of entries? like this:
354
254
765
375
----
4
Thank you!
Solved! Go to Solution.
Hi @BPTBPTBPT ,
Please have a try. Only create a measure.
Measure = IF(ISINSCOPE('Table'[Column1]),MAX('Table'[Column1]),COUNTROWS('Table'))
If I have misunderstood your meaning, please provide some sample data and desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @BPTBPTBPT ,
Please have a try. Only create a measure.
Measure = IF(ISINSCOPE('Table'[Column1]),MAX('Table'[Column1]),COUNTROWS('Table'))
If I have misunderstood your meaning, please provide some sample data and desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope this can provide some hints or ideas on how to create a correct solution for your data model.
Expected outcome measure: =
IF ( HASONEVALUE ( Data[Index] ), SUM ( Data[Value] ), COUNTROWS ( Data ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Thank you for your fast and extended reply.
Unfortunately I can't open de pbix because (apparently) I have an older version of Power BI (and cannot update right now).
Your solution looks good, I was hoping it could be done without an extra column, though.
In fact I have several columns of which I would like to view the sum, then each needs to get its own index column. Is that possible? Or can I have just one index column?
Hi,
Thank you for your feedback.
I am not sure but I think one index column may be OK (Or, if you already have something like a date column, it might be OK too). But still, it is hard to tell without seeing your data model. You can try with your data model, and I hope you can find the best way for your data model.
Thanks.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
103 | |
99 | |
98 | |
38 | |
37 |
User | Count |
---|---|
151 | |
121 | |
73 | |
71 | |
63 |