Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要这方面的语法帮助。我创建了一个名为 totalData 的整数变量来保存包含数据的行数。现在我想格式化行,所以我正在使用
Rows("5:totalData").Select 但我不能在行函数中使用“totalData”。
有人可以帮我找出一种方法来选择所有这些行,以便我可以用正确的大小和字体格式化它们。
谢谢。
Rows("5:" & totalData).Select
注意 totalData 必须 > 0
注意我只添加了一个注释,因为stackoverflow说答案太短了。