请问WinCC脚本怎么写
查到数据库数据后怎么循环填充spreadsheet控件中
求脚本
感谢大家
问题补充:
请问做好的EXCLE模版导入到spreadsheet控件吗
请问spreadsheet控件怎么合并单元格
谢谢
最佳答案
If (oRs.EOF) Then
oRs.close
Else
i=4
oRs.movefirst
Do While Not oRs.EOF
obj.ActiveSheet.Cells(i,1)=Left((oRs.Fields(1).Value + TimeSerial(8, 0, 0)),13)
obj.ActiveSheet.Cells(i,2)=Round(oRs.Fields(2).Value,2)
obj.ActiveSheet.Cells(i,3)=Round(oRs.Fields(3).Value,2)
oRs.movenext
i=i+1
Loop
oRs.close
End If
这是我刚写的
spreadsheet合并单元格,Range("C3:D5").Merage
提问者对于答案的评价:
谢谢,感谢
专家置评
已阅,最佳答案正确。
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc152424.html