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)
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 44 | |
| 34 | |
| 28 | |
| 23 |
| User | Count |
|---|---|
| 143 | |
| 124 | |
| 59 | |
| 40 | |
| 32 |