SSRS: Showing the correct execution time on a two page report?

后端 未结 6 1224
萌比男神i
萌比男神i 2021-01-05 06:20

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

6条回答
  •  时光取名叫无心
    2021-01-05 07:01

    You can track duration in milliseconds using following:

    ="Execution Time: " + CStr(System.DateTime.Now.Subtract(Globals!ExecutionTime).TotalMilliseconds) + "Milliseconds(s)"
    

提交回复
热议问题