此主题相关图片如下:微信圖片_20240223153425.png
选定行自动显示合计金额能实显吗
如果要显示合计到表格里没有办法,如果要显示到窗口标签,或者状态栏就可以
我现在是点一下按纽,我就是想鼠标离开后自动提示,直接用MESSGBOX.show提 示
那在按钮里使用代码统计就行了:
http://www.foxtable.com/webhelp/topics/1597.htm
dim sum as double
With Tables("订单")
For i as Integer = .TopPosition To .BottomPosition
sum += .Rows(i)("金额")
Next
End With
msgbox(sum)