Excel 列自动宽度

发布于 2024-11-09 08:26:18 字数 137 浏览 0 评论 0原文

我正在用 VB 6 编写一个应用程序,需要将 Excel 工作表的列宽调整为该列中内容的最大大小。属性Autofit仅使列的宽度与其标题的宽度一样宽。但我希望它是在其内容的最大大小的基础上完成的。

有办法实现这一点吗?

I am writing an application in VB 6 where I need to resize the column width of an Excel worksheet to that of the maximum size of the content in that column. The property Autofit only makes the width of the columns as wide as that of its caption. But I want it to be done on the basis of the maximum size of its content.

Is there a way to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

墨落成白 2024-11-16 08:26:18

自动调整功能应该可以正常工作,只需确保:

  • 首先插入所有数据,调用自动调整
  • 在整个列上调用自动调整,而不是单个单元格(例如 .Cells(1,1).EntireColumn.Autofit()

希望,这会有所帮助。 ..

The autofit function should work fine, just make sure:

  • First insert all data, the call autofit
  • Call autofit on the entire column, not a single cell (e.g. .Cells(1,1).EntireColumn.Autofit()

Hope, this helps...

寄与心 2024-11-16 08:26:18

您的代码应该如下所示:

Columns("D:D").EntireColumn.AutoFit

Your code should look something like this:

Columns("D:D").EntireColumn.AutoFit
东走西顾 2024-11-16 08:26:18

此示例更改 Sheet1AI 列的宽度以实现最佳拟合:

Worksheets("Sheet1").Columns("A:I").AutoFit

此示例更改 A 列的宽度 通过 Sheet1 上的 E 实现最佳拟合,仅基于单元格 A1:E1 的内容:

Worksheets("Sheet1").Range("A1:E1").Columns.AutoFit

This example changes the width of columns A through I on Sheet1 to achieve the best fit:

Worksheets("Sheet1").Columns("A:I").AutoFit

This example changes the width of columns A through E on Sheet1 to achieve the best fit, based only on the contents of cells A1:E1:

Worksheets("Sheet1").Range("A1:E1").Columns.AutoFit
睡美人的小仙女 2024-11-16 08:26:18

自动调整仅适用于数字和日期。

请参阅 Excel 2003 XML 格式 - AutoFitWidth 不起作用

Auto fit will work only for numbers and date.

Please see Excel 2003 XML format - AutoFitWidth not working

感悟人生的甜 2024-11-16 08:26:18
  1. 输入您的文本,
  2. 将鼠标放在列标题的右上边框上
  3. 当鼠标指针发生变化时,
  4. ,然后用控制键双击,
  5. 您的列宽将根据内容增加......
  1. Enter your text
  2. place mouse on right top border of column heading
  3. when mouse pointer change
  4. then double click with control key
  5. your column width will be increase according to content....
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文