Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
I'm trying to calculate the frequency of date/times in a table and struggling to figure it out (even reading similar posts).
I am wanting a measure which is the average amount of time (in minutes) between date/times. So for example the measure would tell me an event occurs every X minutes on average. I have a data table named "data" and date table attached to it.
Can anyone show me how this would be done from this data below, unfortunately i cannot upload the pbx or link to a cloud drive.
Solved! Go to Solution.
@rogerdea , You need to create a new column and take diff
Create a new column =
datediff(Maxx(filter(Table, [Datetime] < earlier([date time]) ), [date time]) , [Date time], second)
amazing, thanks so much
@rogerdea , You need to create a new column and take diff
Create a new column =
datediff(Maxx(filter(Table, [Datetime] < earlier([date time]) ), [date time]) , [Date time], second)
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 38 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 140 | |
| 102 | |
| 64 | |
| 36 | |
| 35 |