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

Join 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.

Reply
thesle
Frequent Visitor

Measure help

  • Totale ticket chiusi = SUMX(FILTER('estrazione_dati 2 ticket','estrazione_dati 2 ticket'[Stato ticket] = "CHIUSO" ),1 in this measurement I count how many lines have the string "closed" in order to understand the total number of closed tickets
  • Media ticket chiusi al giorno = AVERAGEX(SUMMARIZE('estrazione_dati 2 ticket','estrazione_dati 2 ticket'[DATA_CHIUSURA_TK].[Giorno]),'estrazione_dati 2 ticket'[Totale ticket chiusi]) In this measure I calculate the average number of tickets closed per day
  • Media ticket chiusi al mese = AVERAGEX(SUMMARIZE('estrazione_dati 2 ticket','estrazione_dati 2 ticket'[DATA_CHIUSURA_TK].[Mese]),'estrazione_dati 2 ticket'[Totale ticket chiusi]) In this measure I calculate the average number of tickets closed per month
  • Tempo_medio_presaincarico_ticket = AVERAGEX('estrazione_dati 2 ticket',DATEDIFF('estrazione_dati 2 ticket'[DATA_INIZIO],'estrazione_dati 2 ticket'[data_presa_in_carico],DAY)) in this measure I calculate the average time it takes to process a ticket from the date the ticket is opened
  • Tempo medio chiusura ticket = AVERAGEX('estrazione_dati 2 ticket',DATEDIFF('estrazione_dati 2 ticket'[data_presa_in_carico],'estrazione_dati 2 ticket'[DATA_CHIUSURA_TK],DAY)) in this measure I calculate the average time it takes to close a ticket from the date of receipt
 I simply wanted to compare with you and understand whether the calculations seem right to you or not
 

 

 
 
2 REPLIES 2
lbendlin
Super User
Super User

Instead of SUMX(...,1) you can use COUNTROWS(...)

 

No need to specify the table name for measures.

Thank you very much, what about the other measurements, do they seem correct to you?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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