菜鸟问个VBA code,谢谢。 (转载)# WaterWorld - 未名水世界
n*r
1 楼
【 以下文字转载自 Database 讨论区 】
发信人: niuyuer (扭腰课), 信区: Database
标 题: 菜鸟问个VBA code,谢谢。
发信站: BBS 未名空间站 (Tue Jul 16 09:07:57 2013, 美东)
如果第一行有些数据,我把它们按顺序分到不同group,每个group的和少于10,每个
group尽可能多放,比如第一组应该是A1:C1,而不是A1:B1,尽管A1:B1也小
于10。
比如,第一行的数据如下:
A1=2
B1=3
C1=4
D1=3
E1=5
F1=3
G1=3
H1=8
....
....
....
The total of first three columns (A1:C1) = 2+3+4=9 <10
The total of second two columns (D1:E1)=3+5=8 <10
The total of third two columns (F1:G1)=3+3=6<10
....
....
现在我想return的value是每个group有多少个number,比如,第一组有3个数字,第二
组有2个数字,第三组有2个数字,。。。
谢谢。
发信人: niuyuer (扭腰课), 信区: Database
标 题: 菜鸟问个VBA code,谢谢。
发信站: BBS 未名空间站 (Tue Jul 16 09:07:57 2013, 美东)
如果第一行有些数据,我把它们按顺序分到不同group,每个group的和少于10,每个
group尽可能多放,比如第一组应该是A1:C1,而不是A1:B1,尽管A1:B1也小
于10。
比如,第一行的数据如下:
A1=2
B1=3
C1=4
D1=3
E1=5
F1=3
G1=3
H1=8
....
....
....
The total of first three columns (A1:C1) = 2+3+4=9 <10
The total of second two columns (D1:E1)=3+5=8 <10
The total of third two columns (F1:G1)=3+3=6<10
....
....
现在我想return的value是每个group有多少个number,比如,第一组有3个数字,第二
组有2个数字,第三组有2个数字,。。。
谢谢。