|
生产时间表中有A ,B,C三列数据
编号 A B C
1 2 3 5
编号1这列 c=a+b ,第一个A是固定值比如24
从编号2开始a列的值等于上一编号C列的值,比如
编号 A B C
2 5(编号1,c的值) 4 9
3 9(编号2,c的值) 6 15
4 15(编号3 ,c的值) 8 23
B是固定值 A 和C都是逻辑值
应该如何设计在access中得出c的值呢。
请问在access中应该如何实现上面的计算?如何存储到表中?
VB中这样写
dim i as single
dim allsum as single
Dim Rs As ADODB.Recordset
Set Rs = New ADODB.Recordset
StrTemp = "Select * From 生产时间"
Rs.Open StrTemp, CurrentProject.Connection, adOpenKeyset, adLockOptimistic
for i (i=0 to rs.recordcount)
allsum=allsum+rs("b")
print allsum
end sub
有没说清楚的还请看客提出,谢谢
[ 本帖最后由 wf0794 于 2008-5-24 19:39 编辑 ] |
|