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! Get ahead of the game and start preparing now! Learn more
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! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 137 | |
| 102 | |
| 71 | |
| 67 | |
| 65 |