Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
In this table, I have 3 columns that are in the total row. The Count of Inspection ID is a total, which is fine. The Individual Hours is an average, which I need to also be a total. Then, Inspections Per Hour is a total, which I need to be an average. I only see where I can turn the total row on and off. Is there somewhere I can adjust the settings to what I need?
Solved! Go to Solution.
Hi @hilljo,
Thank you for reaching out to the Microsoft fabric community forum. Thank you @Deku, for your inputs on this issue.
After thoroughly reviewing the details you provided, I was able to reproduce the scenario, and it worked on my end. I have used it as sample data on my end and successfully implemented it.
I am also including .pbix file for your better understanding, please have a look into it:
I hope this could resolve your issue, if you need any further assistance, feel free to reach out. If this post helps, then please give us ‘Kudos’ and consider Accept it as a solution to help the other members find it more quickly.
Thank you for using Microsoft Community Forum.
Hi @hilljo,
Thank you for reaching out to the Microsoft fabric community forum. Thank you @Deku, for your inputs on this issue.
After thoroughly reviewing the details you provided, I was able to reproduce the scenario, and it worked on my end. I have used it as sample data on my end and successfully implemented it.
I am also including .pbix file for your better understanding, please have a look into it:
I hope this could resolve your issue, if you need any further assistance, feel free to reach out. If this post helps, then please give us ‘Kudos’ and consider Accept it as a solution to help the other members find it more quickly.
Thank you for using Microsoft Community Forum.
Hi @hilljo,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @hilljo,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @hilljo,
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.
Thank you.
In the well where you dragged your columns, if you right click on hours, you can select aggregation type. Swap from SUM to AVERAGE
I don't want the avearage to show for each row, only in the totals row.
You will need to create a measure
Hours=
If(
Isinscope( table[workorderid]),
Sum( table[inspections per hour]),
Average( table[inspections per hour])
)