以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- Excel报表中指定行自动调整行高 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=71017) |
||||||||||||||||||||||||
-- 作者:2900819580 -- 发布时间:2015/7/3 10:59:00 -- Excel报表中指定行自动调整行高
以下红色代码是整个表都会调整行高,可是我只想调整指定的行高。上传附档。 Dim App As New MSExcel.Application ShowAppWindow(Pname,2)
|
||||||||||||||||||||||||
-- 作者:大红袍 -- 发布时间:2015/7/3 11:12:00 -- Dim Rg As MSExcel.Range = Ws.Range("A14:J" & (14+你要打印的行数)) Rg.EntireRow.AutoFit \'自动调整行高 |
||||||||||||||||||||||||
-- 作者:2900819580 -- 发布时间:2015/7/3 13:57:00 -- Dim Rg As MSExcel.Range = Ws.Range("A14:J" & (14+你要打印的行数))
打印的行数,怎么样可以获取。他是变量的哟。
|
||||||||||||||||||||||||
-- 作者:大红袍 -- 发布时间:2015/7/3 14:01:00 -- Dim Rg As MSExcel.Range = Ws.Range("A14:J" & (14+Tables("采购单管理").BottomPosition-Tables("采购单管理").TopPosition))
|