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 Everyone!
I'm having a hard time to get the average of Turn Around Time (TAT) that is in the "Text Format"
my TAT format is like this "hh:mm:ss" and once i visualize this using CARD, there's no option to make it as "Average"
Note: there is no "Average" option in "Fields" that's
Hi @Anonymous
You may try creating a measure
Average TAT = AVERAGEX ( 'Table', TIMEVALUE ( 'Table'[TAT] ) )
It's working but not the result i wanted. still, thank you!
hi @Anonymous
what result do you want?
the result i wanna get is to show in the card the Average Hours and Minutes.
for e.g. when i click the table that contains 1 data, and Turn-Around-Time is like this "08:23"-8 hours and 23 minutes, it should also reflect in the card as Average.
thanks!
@Anonymous
Please provide sample data a example along with the expected result(s).
i want this column to be reflected in the CARD as Average but it gives me error when trying to do this as Average
Note: that Data Type is in "Text"
@Anonymous
Please try
Average TAT =
AVERAGEX (
FILTER ( 'Table', 'Table'[TAT] <> BLANK () ),
TIMEVALUE ( 'Table'[TAT] )
)
hi @Anonymous
try to convert it like:
TIMEVALUE([TAT])
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 |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |