- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2025 10:44 AM
Hi all,
Is there anyone who can suggest a method to add a custom column in Platform Analytics that calculates the difference between two dates?
For example, the difference in days between the opened date and the closed date of an Incident.
Thanks,
D
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2025 12:01 PM
Hi,
A while back I made a tool to calculate the difference between two dates with Flow Designer.
Perhaps you can use it to set the value of a custom field in your table.
Ffor instance when an Incident is closed, the value would be set,
and then you can perform the reporting directly on that field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago - last edited 2 weeks ago
Hi @paulmagaling, unfortunately, there’s no update — it seems that it is not possible directly in Platform Analytics. Based on the information I have, Platform Analytics doesn’t support creating formula-based custom columns inside datasets.
1. Create an integer field like:
u_resolution_days
2. Populate it using a Business Rule "On Close":
- u_resolution_days = gs.dateDiff(opened_at, closed_at, true)
