- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2016 10:42 PM
we have two fields: due date and due date change.
due date change is a counter that will count the number of times the 'Due date' has been changed.
how to achieve this functionality.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-17-2016 10:49 PM
Hi Avani,
you can simply write a BR on update
current.due_date_change = current.due_date_change + 1;
and set "when to run" on due_date field changes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-18-2016 11:37 PM
Hi Rahul,
this has bit issue.
when I am saving the record first time with due date empty.
and when I am updating the record with its first due date, due date changes to '1', which is not correct as it is the first time I am putting value in due date.
could you please suggest a solution

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-19-2016 12:10 AM
You can set in condition of script
previous.due_date !=''
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-08-2016 09:03 AM
Could also default the integer field to a value of -1