<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>琼殿技术论坛 - WPS/Office论坛</title>
    <link>https://bbs.qiongdian.com/forum-108-1</link>
    <description>Latest 20 threads of WPS/Office论坛</description>
    <copyright>Copyright(C) 琼殿技术论坛</copyright>
    <generator>Discuz! Board by Discuz! Team</generator>
    <lastBuildDate>Sun, 03 May 2026 22:37:07 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://bbs.qiongdian.com/static/image/common/logo_88_31.gif</url>
      <title>琼殿技术论坛</title>
      <link>https://bbs.qiongdian.com/</link>
    </image>
    <item>
      <title>VBA实现合并具有文本框的Word文档</title>
      <link>https://bbs.qiongdian.com/thread-15314-1-1.html</link>
      <description><![CDATA[本文介绍基于VBA语言，对大量含有图片、文本框与表格的Word文档加以批量自动合并，并在每一次合并时添加分页符的方法。
在我们之前的文章中，介绍过基于Python语言的python-docx（docx）模块与docxcompose模块，对大量Word文档加以合并的方法；但是，基于这种方法，我们 ...]]></description>
      <category>WPS/Office论坛</category>
      <author>思界</author>
      <pubDate>Sun, 17 Nov 2024 05:37:36 +0000</pubDate>
    </item>
    <item>
      <title>VBA数组去重(字典去重多种方法+数组去重2种方法)</title>
      <link>https://bbs.qiongdian.com/thread-15313-1-1.html</link>
      <description><![CDATA[目录1 用字典的方法去重2 用数组的方法去重2.1 用数组循环的方法，去数组重复也可以2.2 用循环数组方法，判断 每次内部循环，每次是否可以走一个完整循环2.3用数组的方法查重复次数1 用字典的方法去重
方法1，用字典去重dict1(I) = &amp;quot;&amp;quot;方法2，用字典去重 + 统计次数dict2 ...]]></description>
      <category>WPS/Office论坛</category>
      <author>长林是我儿</author>
      <pubDate>Tue, 01 Aug 2023 07:26:15 +0000</pubDate>
    </item>
    <item>
      <title>VBA实现全文件快速替换的示例代码</title>
      <link>https://bbs.qiongdian.com/thread-15303-1-1.html</link>
      <description><![CDATA[大家对于VBA处理文本文件并不陌生，Open打开文件，Line Input逐行读取处理，然后再使用Print写入到目标文件，整个过程并不复杂，但是如果源文件数据行数较多，那么逐行读取将花费较多的时间。
Sub demo()
    FN1 = FreeFile
    Open OutFile For Output As FN1
    FN ...]]></description>
      <category>WPS/Office论坛</category>
      <author>岫孤云</author>
      <pubDate>Tue, 01 Aug 2023 07:15:51 +0000</pubDate>
    </item>
    <item>
      <title>VBA中的循环代码的使用</title>
      <link>https://bbs.qiongdian.com/thread-15312-1-1.html</link>
      <description><![CDATA[目录一、循环填充单元格二、循环遍历工作表三、循环遍历工作簿四、注意事项最近，我在自学VBA，有了之前的Python基础，感觉学起VBA也比较轻松。毕竟VBA和Python一样都是面向对象的编程语言。通过自学，我基本上掌握了VBA的循环方法，以下是我的简单笔记和大家一起分享。 ...]]></description>
      <category>WPS/Office论坛</category>
      <author>伦桑</author>
      <pubDate>Mon, 05 Jun 2023 00:49:30 +0000</pubDate>
    </item>
    <item>
      <title>vba将excel按照某一列拆分成多个文件</title>
      <link>https://bbs.qiongdian.com/thread-15307-1-1.html</link>
      <description><![CDATA[1.打开目标excel,按alt + f11键打开VBE窗口

2.选择插入-&amp;gt;模块粘贴下面代码到编辑器中

Sub 保留表头拆分数据为若干新工作簿()
    Dim arr, d As Object, k, t, i&amp;amp;, lc%, rng As Range, c%
    c = Application.InputBox(\&quot;请输入拆分列号\&quot;, , 4, , , , , 1)
   ...]]></description>
      <category>WPS/Office论坛</category>
      <author>返璞之境</author>
      <pubDate>Mon, 05 Jun 2023 00:43:42 +0000</pubDate>
    </item>
    <item>
      <title>Excel VBA按列拆分工作表和工作簿的实现</title>
      <link>https://bbs.qiongdian.com/thread-15308-1-1.html</link>
      <description><![CDATA[目录1，工作表按列拆分为工作表2，工作表按列拆分为工作簿3，工作簿按列拆分3.1，复制法3.2，删除法4，工作表按列拆分，支持多列关键值改进《将excel按照某一列拆分成多个文件》，使代码更具通用性，可以实现将工作表拆分为工作表或工作簿
对Excel表格数据按照某列的值 ...]]></description>
      <category>WPS/Office论坛</category>
      <author>郭荣婷</author>
      <pubDate>Mon, 05 Jun 2023 00:43:19 +0000</pubDate>
    </item>
    <item>
      <title>Excel VBA指定条件删除整行整列的实现</title>
      <link>https://bbs.qiongdian.com/thread-15309-1-1.html</link>
      <description><![CDATA[目录sub1.删除工作表所有空行sub2.删除工作表所有空列sub3.删除选中单列包含指定字符的行改进版sub4.删除选中单列不含指定字符的行sub5.删除选中列重复的整行sub1.删除工作表所有空行
Sub 删除工作表所有空行()
    Dim first_row, last_row, i
    first_row = ActiveS ...]]></description>
      <category>WPS/Office论坛</category>
      <author>幽默哥</author>
      <pubDate>Mon, 05 Jun 2023 00:42:49 +0000</pubDate>
    </item>
    <item>
      <title>VBA中Excel宏的介绍及应用</title>
      <link>https://bbs.qiongdian.com/thread-15311-1-1.html</link>
      <description><![CDATA[目录Excel中的宏（Macro）是什么宏的来历宏能干什么？宏的录制宏的保存Excel中的宏（Macro）是什么
在Excel的&amp;ldquo;视图&amp;rdquo;标签页下，有一个宏的功能，示例如下图：

宏其实是一段可以重复执行的代码，对应上图的两个选项：
查看宏：查看已经存在的宏的代码段，并 ...]]></description>
      <category>WPS/Office论坛</category>
      <author>人生坎坷</author>
      <pubDate>Mon, 05 Jun 2023 00:42:27 +0000</pubDate>
    </item>
    <item>
      <title>Excel·VBA合并工作簿的实现示例</title>
      <link>https://bbs.qiongdian.com/thread-15310-1-1.html</link>
      <description><![CDATA[目录1，合并文件夹下所有工作簿1.1，合并且建立超链接目录2，合并工作簿中所有工作表2.1，纵向合并2.2，横向合并3，合并文件夹下所有工作簿中所有工作表3.1，合并且显示原工作簿名称、原工作表名称4，合并文件夹下所有工作簿中同名工作表4.1，合并且显示原工作簿名称1， ...]]></description>
      <category>WPS/Office论坛</category>
      <author>风向思维</author>
      <pubDate>Mon, 05 Jun 2023 00:41:59 +0000</pubDate>
    </item>
    <item>
      <title>关于vba代码运行时错误1004 应用程序定义或对象定义错误问题</title>
      <link>https://bbs.qiongdian.com/thread-15306-1-1.html</link>
      <description><![CDATA[目录前言一、错误描述二、原因调查总结前言
一、错误描述
将Excel所有工作表，汇总到一个工作表中：
在thisworkbook中运行如下：
Sub 合并所有工作表_在所有行标注工作表名字_无视空行空列_考虑到不规范的多一点的行和列()
    Dim row_num As Long, column_num As Long ...]]></description>
      <category>WPS/Office论坛</category>
      <author>天龙八步和它们的野生不拦你</author>
      <pubDate>Tue, 11 Oct 2022 06:30:23 +0000</pubDate>
    </item>
    <item>
      <title>VBA工程加密PJ方式(两种)</title>
      <link>https://bbs.qiongdian.com/thread-15305-1-1.html</link>
      <description><![CDATA[两种方式破解VBA加密代码
第一种：


Sub VBAPassword1() \'你要解保护的Excel文件路径
    Filename = Application.GetOpenFilename(\&quot;Excel文件（*.xls &amp;amp; *.xla &amp;amp; *.xlt）,*.xls;*.xla;*.xlt\&quot;, , \&quot;VBA破解\&quot;)
    If Dir(Filename) = \&quot;\&quot; Then
        MsgBox \&quot;没找到相关 ...]]></description>
      <category>WPS/Office论坛</category>
      <author>宋兵乙</author>
      <pubDate>Fri, 03 Dec 2021 09:16:32 +0000</pubDate>
    </item>
    <item>
      <title>VBA处理数据与Python Pandas处理数据案例比较分析</title>
      <link>https://bbs.qiongdian.com/thread-15304-1-1.html</link>
      <description><![CDATA[需求：
现有一个 csv文件，包含\'CNUM\'和\'COMPANY\'两列，数据里包含空行，且有内容重复的行数据。
要求：
1）去掉空行；
2）重复行数据只保留一行有效数据；
3）修改\'COMPANY\'列的名称为\'Company_New‘；
4）并在其后增加六列，分别为\'C_col\',‘D_col\',‘E_col\',‘F_col\' ...]]></description>
      <category>WPS/Office论坛</category>
      <author>看你笑嘻嘻</author>
      <pubDate>Tue, 07 Apr 2020 06:04:21 +0000</pubDate>
    </item>
    <item>
      <title>用vba实现将记录集输出到Excel模板</title>
      <link>https://bbs.qiongdian.com/thread-15905-1-1.html</link>
      <description><![CDATA[复制代码 代码如下:\'************************************************&amp;nbsp; \'**&amp;nbsp;函数名称:&amp;nbsp;&amp;nbsp;ExportTempletToExcel&amp;nbsp; \'**&amp;nbsp;函数功能:&amp;nbsp;&amp;nbsp;将记录集输出到&amp;nbsp;Excel&amp;nbsp;模板&amp;nbsp; \'**&amp;nbsp;参数说明:&amp;nbsp; \'**&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp; ...]]></description>
      <category>WPS/Office论坛</category>
      <author>踏月色而来</author>
      <pubDate>Tue, 27 Feb 2007 16:00:00 +0000</pubDate>
    </item>
  </channel>
</rss>