I\'m just wondering how I can show the correct execution time on a report?
Until recently I had been using the following in the footer of my reports as a label expre
You can track duration in milliseconds using following:
="Execution Time: " + CStr(System.DateTime.Now.Subtract(Globals!ExecutionTime).TotalMilliseconds) + "Milliseconds(s)"