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

后端 未结 6 1220
萌比男神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 06:51

    You could try this.

    =IIF(Sum(Fields!inb_insug_cnt.Value) = 0 , "-",FLOOR(Sum(Fields!inb_insug_duration.Value)/3600) & ":" & IIF( Sum(Fields!inb_insug_duration.Value) > 3600,RIGHT( "0" & FLOOR((Sum(Fields!inb_insug_duration.Value) MOD 3600)/60),2),RIGHT("0" & FLOOR(Sum(Fields!inb_insug_duration.Value)/60),2)) & ":" & RIGHT("0" & (Sum(Fields!inb_insug_duration.Value) MOD 60), 2))

提交回复
热议问题