The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I am trying to show average time on my report. When adding time, I right click and under values, I have "count" and "count distinct" but not average. It used to show up and I'm not sure where it has gone? I've tried various visualizations but I am not getting it as an option.
Solved! Go to Solution.
Hi @Kazzi ,
Thanks for your question! The issue you're encountering is quite common and usually relates to the data type of the field you're trying to average.
Data Type of the Column
Field Formatting
Use a Measure Instead\ If the column is complex or derived, you can create a measure manually:
AverageTime = AVERAGE('YourTable'[YourColumn])
Then use this measure in your visual.
Check for Hidden Fields\ Sometimes, fields are hidden from the report view. Make sure the column is visible and not marked as "Do not summarize."
For more on data types and aggregation, check out:
https://learn.microsoft.com/power-bi/transform-model/desktop-data-types
https://learn.microsoft.com/power-bi/transform-model/desktop-quickmeasures-average
Let me know if you'd like help checking the data type or writing a custom measure!
If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.
This response was assisted by AI for translation and formatting purposes.
Thank you! It was stored as text
Hi @Kazzi ,
Thanks for your question! The issue you're encountering is quite common and usually relates to the data type of the field you're trying to average.
Data Type of the Column
Field Formatting
Use a Measure Instead\ If the column is complex or derived, you can create a measure manually:
AverageTime = AVERAGE('YourTable'[YourColumn])
Then use this measure in your visual.
Check for Hidden Fields\ Sometimes, fields are hidden from the report view. Make sure the column is visible and not marked as "Do not summarize."
For more on data types and aggregation, check out:
https://learn.microsoft.com/power-bi/transform-model/desktop-data-types
https://learn.microsoft.com/power-bi/transform-model/desktop-quickmeasures-average
Let me know if you'd like help checking the data type or writing a custom measure!
If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.
This response was assisted by AI for translation and formatting purposes.