excel自动格式化、过滤、获取值

发布于 2024-12-22 02:48:22 字数 421 浏览 1 评论 0原文

需要在Excel工作表上自动执行以下步骤,无需人工干预。我怎样才能做到这一点?

  • 将有 A、B、C、D、E、F、G、H 列。删除 C、D 和 E 三列。
  • 在“F”列上添加“列名称”,公式为 =D2/60
  • 格式化列 C 和 D编号/使用 1000 个分隔符/0 个小数位
  • 将 F 列格式设置为编号/使用 1000 个分隔符/4 个小数位
  • 按 src=Total 和 EventTypes= ~所有事件~ 获取列C 值和 F 列值 - 将其作为单独的列放入文本文件中
  • 按 src=Total/EventTypes=All 进行过滤 获取最大的 C 列值,并将其添加到列中
  • 按 src=All/EventTypes= ~所有事件~ 进行过滤获取最大的C列值和最大的F列值并将其添加到列中

Need to perform the following steps on an excel worksheet automatically without manual intervention. How can I do that?

  • There will be columns A, B, C, D, E, F, G, H. Remove three columns C, D and E.
  • On Column ‘F’ add ‘Column Name’ with formula =D2/60
  • Format Columns C and D to Number/Use 1000 Separator/0 Decimal Places
  • Format Column F to Number/Use 1000 Separator/4 Decimal Places
  • Filter by src=Total and EventTypes= ~all events~ get Column C value and Column F value - put it in a text file as individual columns
  • Filter by src=Total/EventTypes=All get Column C value which is maximum and add it to the columns
  • Filter by src=All/EventTypes= ~all events~ get Column C value which is maximum and Column F value which is maximum and add it to the columns

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

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

发布评论

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

评论(2

趴在窗边数星星i 2024-12-29 02:48:22

Jexcel http://jexcelapi.sourceforge.net/ 是一个很好的处理 Excel 工作表的软件包。

Jexcel http://jexcelapi.sourceforge.net/ is a good package for working with excel sheets.

栖竹 2024-12-29 02:48:22
  1. 您可以在 VBScript 中以 Excel 宏的形式轻松完成所有这些操作。

  2. 您还应该能够使用任何 .Net 或 COM/Active-X 感知的编程语言(例如 C#、VB6 和 Delphi 等)来完成此操作。

  3. 如果您确实需要使用 Java,则可以使用 Apache POI 或 OpenXLS 等库来实现:

  1. You can easily do all of this in VBScript, as an Excel macro.

  2. You should also be able to do it in any .Net or COM/Active-X aware programming language (e.g. C#, VB6 and Delphi, among many others).

  3. If you absolutely need to use Java, you might be able to do it, using a library like Apache POI or OpenXLS:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文