March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have been trying every possible option for days now and I am just going around in circles. I have a Date table, a Time table, and a data table. My data table contains one ticket per row with a timestamp. I have broken out the time stamp into date, time, weekday and hour. I have a day of week slicer that is connected to my date table ('Date'[Day of Week]) and a date slicer that is connected to my date table ('Date[MMYY]).
These are the measures that I am using:
Total Tickets = Countrows('Mytable')
Avg Per Day = AVERAGEX(DISTINCT('MyTable'[Date Created]),Calculate(Countrows('MyTable')/[Count Days]))
Solved! Go to Solution.
I finally got this to work! Posting the solution here in case others have this issue. At least this appears to function as expected.
I changed the Count Days measure to be:
What is Hourly Total in your measure?
Is it count of hours or sum of hours?
Hi @bevawn
Please try
Hourly Average =
AVERAGEX (
SUMMARIZE ( 'MyTable', 'MyTable'[Date Created], 'MyTable'[Hour] ),
CALCULATE ( COUNTROWS ( 'MyTable' ) )
)
I finally got this to work! Posting the solution here in case others have this issue. At least this appears to function as expected.
I changed the Count Days measure to be:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |