How to Calculate Total Business Duration since Created on date to now date
Hi,I need to calculate Business duration from Idea being Created on to till present day.Below is the script i used so far:var start = new GlideDateTime(gr.sys_created_on);var end = new GlideDateTime(gs.now());var dc = new DurationCalculator();dc.setS...