Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
aoz1963
New Member

como promediar horas

Tengo una tabla con datos en horas y fechas, y necesito poder visualizarlo promediandoolo, esto se puede hacer?

 

1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hi @aoz1963 ,

 

You may create measure like DAX below.

 

Average Hour =

Var _HourDiff= DATEDIFF(MIN(Table1[Date]), MAX(Table1[Date]), HOUR)

return

AVERAGEX(Table1, _HourDiff )

 

If I misunderstood it, could you please share your sample data and desired output screenshots for further analysis? You can also upload sample pbix to OneDrive and post the link here. Do mask sensitive data before uploading.

 

Please read this post to get your answer quickly: How to Get Your Question Answered Quickly.

 

Best Regards,

Amy 

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-xicai
Community Support
Community Support

Hi @aoz1963 ,

 

You may create measure like DAX below.

 

Average Hour =

Var _HourDiff= DATEDIFF(MIN(Table1[Date]), MAX(Table1[Date]), HOUR)

return

AVERAGEX(Table1, _HourDiff )

 

If I misunderstood it, could you please share your sample data and desired output screenshots for further analysis? You can also upload sample pbix to OneDrive and post the link here. Do mask sensitive data before uploading.

 

Please read this post to get your answer quickly: How to Get Your Question Answered Quickly.

 

Best Regards,

Amy 

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

sebastiangestia
Resolver I
Resolver I

Hola @aoz1963 ,

 

No entiendo claramente dónde estás queriendo promediar los datos. Por ejemplo, en un componente visual en Power BI Desktop, si agregas un dato de tipo número u hora, automáticamente te puede promediar (estableciendo "Promedio" como modo de sumarizar). No pasaría esto con las fechas, pero se podrían hacer numéricas que promedian.

 

También se podría hacer una medida en DAX utilizando alguna de las funciones AVERAGE. 

 

Saludos

 

 

Si mi respuesta te sirve, agradezco el reconocimiento y también los kurdos. Gracias!

 

amitchandak
Super User
Super User

@aoz1963 , The information you have provided is not making the problem clear to me. Can you please explain with an example.
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Appreciate your Kudos.


Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.