<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Excel公式</title>
    <link>http://www.zhizuobiaoge.com/e/action/ListInfo/?classid=4</link>
    <description>Latest 50 infos of Excel公式</description>
    <copyright>Copyright(C) Empire CMS</copyright>
    <generator>Empire CMS by Empire Studio.</generator>
    <lastBuildDate>Wed, 08 Jul 2026 21:08:59 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.zhizuobiaoge.com/e/data/images/rss.gif</url>
      <title>制作表格 - 高效办公服务Word,Excel,PPT</title>
      <link>http://www.zhizuobiaoge.com/</link>
    </image>
    <item>
      <title><![CDATA[【如何新建1个Excel表格】excel表格主要是用于数据的展示，统计，汇总，分析时使用]]></title>
      <description><![CDATA[ 在电脑桌面上新建一个Excel表格的详细步骤如下：方法一：通过Excel程序新建		启动Excel程序：			在Windows系统中，可以通过开始菜单中的&amp;ldquo;所有程序&amp;rdquo;找到Microsoft Excel ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel296.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel296.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 12 Oct 2024 01:11:51 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[多行多列的区域中查询某个值所在的行（列）sum、if、row函数]]></title>
      <description><![CDATA[ 我们以a列至E列作为原始数据，需要查询某个值所在的行数，如下图：


g2单元格的公式为：=SUM(IF(A1:E10=F2,ROW(A1:A10)))

如果要查询所在的列，则对应的row部分改为对应的column就 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel282.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel282.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 20 Jan 2024 06:51:27 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[通过身份证号中的第17位奇偶来判断性别，使用excel函数中的if函数，mod函数，mid函数]]></title>
      <description><![CDATA[ 　　身份证号中的第17位，也就是倒数第2位，如果为奇数(1，3，5，7，9)则性别为男，　　如果为偶数(0，2，4，6，8)则为女性。　　奇偶的判断，换另外一种理解：0至9除以2，如果余数为0，则为偶数，如果余数 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel64.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel64.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 07 Jun 2023 05:13:07 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Microsoft excel提示此公式有问题。。]]></title>
      <description><![CDATA[ 　　有时候，我们在Microsoft excel中输入公式，按下回车的时候，会收到提示：此公式有问题。。　　截图如下：　　通过excel的以上提示，我们可以获得如下的信息：　　1，公式是以=号或者是 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel35.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel35.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 27 May 2023 00:01:44 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Excel表格中行转列，列转行，置换]]></title>
      <description><![CDATA[ 　　在excel表格中，我们会碰到需要把行变成列，或者是把列变成行的情况，　　方法一，使用复制，选择性粘贴，置换操作。　　gif动画演示教程如下：　　步骤：　　1，复制需要置换的区域。　 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel143.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel143.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 26 May 2023 05:28:40 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[使用sum、left、len函数对带单位的单元格区域直接求和运算]]></title>
      <description><![CDATA[ 在D列有一部分原始数据，录入的原数据格式是带单位的（特点是单位统一），现需要对原始数据直接求和运算。
=SUM(LEFT(D8:D13,LEN(D8:D13)-1)*1) ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel219.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel219.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Thu, 25 May 2023 01:03:00 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[【excel实例】：按不同的产品名称，不同的规格，不同的工序，求生产数量]]></title>
      <description><![CDATA[ 如下图：要求是按不同的产品名称，不同的规格，不同的工序，求生产数量



思路：
产品名称可能存在相同的情况下，而规格不同，或者可能名称和规格相同，而工序又不同的情况。
所以，我们需要 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel133.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel133.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 19 Apr 2023 11:18:58 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[通过产品的入库时间来计算产品在库的库龄（库存产品年龄，这也是判断是否为呆滞的一个条件）]]></title>
      <description><![CDATA[ 一位用户的实际截图如下，H列为入库时间，格式为年4位月2位日2位，共计8位。



下面我们继续先上gif动画，直观演示看：



gif动画演示中，o4单元格公式为：

=TODAY()-DATE(LEFT(H4,4), ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel130.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel130.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 14 Apr 2023 07:17:13 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[用Excel公式（mid函数和文本连接符&amp;）处理银行卡卡号，按每4位用空格进行排版显示效果]]></title>
      <description><![CDATA[ 在很多时候，我们能看到在输入银行卡号时，会显示出来另一种每4位进行显示的效果。 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel127.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel127.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Tue, 28 Mar 2023 06:45:30 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[对多行按条件计算条数（行数）（sum、if函数嵌套使用）]]></title>
      <description><![CDATA[ 在实际工作中，我们更多的是一个表中很多的明细，一个相同的内容，可以复制出现N次，只是时间点不同，或者是日期不同，又或者是客户不同。

那么，我们就需要对一定时间内的同一商品进行 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel126.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel126.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 10 Mar 2023 06:45:45 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[对求和后的单行序号个数展开成多行（单行变多行）]]></title>
      <description><![CDATA[ 用文字来描述一些问题，可能比较麻烦。那就直接上gif动画演示吧。

如左侧所示，显示1有多少个，2有多少个。但现在要的结果是，有几个1，就显示几行，有几个2就显示几行。

gif动画演示 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel125.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel125.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 10 Mar 2023 06:26:58 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[通过完成值的比例来自动生成对应的考核分数(excel函数中的if函数嵌套使用）]]></title>
      <description><![CDATA[ 　　先来用一个gif动画演示一个效果。　　演示中，当实际的完成值小于等于千分之1的时候，也就是百分之0.1的时候，此项自动得15分，　　当错误率在千分之一至千分之5之间时，只能得到 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel117.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel117.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 14 Jan 2023 08:44:15 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[把Excel表格中2列的内容通过交叉显示变为1列内容（使用excel函数，offset，int，row，mod）]]></title>
      <description><![CDATA[ 　　以下图为例，B列，C列为原数据，D列为把B列和C列合并后，显示的结果或者说要求。　　下面通过gif动画演示，来进行操作。　　公式为：　　=OFFSET($b$1,INT((ROW(A1)-1)/2),MOD(ROW( ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel116.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel116.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 30 Dec 2022 01:07:08 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[把1个单元格中的内容，按符号/进行拆分，分列]]></title>
      <description><![CDATA[ =TRIM(MID(SUBSTITUTE($A$5,&amp;quot;/&amp;quot;,REPT(&amp;quot; &amp;quot;,100)),COLUMN(A5)*100-99,99))

REPT(&amp;quot; &amp;quot;,100)
意思是把空格复制100个。

SUBSTITUTE($A$5,&amp;quot;/&amp;quot;,REPT(&amp;quot; &amp;quot;,100))
意思是把A5单元 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel115.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel115.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sun, 11 Dec 2022 08:45:42 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[随机生成性别，男，女，使用excel函数if函数，randbetween函数]]></title>
      <description><![CDATA[ 　　可以看一下gif动画演示中I列的效果：　　I列公式截图内容：　　I列的公式：　　=IF(RANDBETWEEN(1,2)=1,&amp;quot;男&amp;quot;,&amp;quot;女&amp;quot;)　　RANDBETWEEN(1,2)，是随机生成1和2　　再配合if函数，生成 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel104.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel104.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 19 Nov 2022 08:25:56 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[随机生成2个字的姓名，3个字的姓名，使用excel函数VLOOKUP函数，randbetween函数，连接符&amp;amp;]]></title>
      <description><![CDATA[ 　　随机生成2个字，3个字的姓名，gif动画演示效果如下：　　2个字姓名截图如下：　　公式为：　　=VLOOKUP(RANDBETWEEN(1,37),A:D,2,0)&amp;amp;VLOOKUP(RANDBETWEEN(1,37),A:D,3,0)　　RAND ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel103.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel103.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 19 Nov 2022 08:22:10 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[随机生成1-6年级，使用excel函数中的text函数，randbetween函数，运算符&amp;amp;]]></title>
      <description><![CDATA[ 　　gif动画演示效果：　　其中，随机生成一年级至六年级的截图如下：　　公式为：　　=TEXT(RANDBETWEEN(1,6),&amp;quot;dbnum1&amp;quot;)&amp;amp;&amp;quot;年级&amp;quot;　　公式：　　RANDBETWEEN(1,6)，可以实现的是随机生 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel102.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel102.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 19 Nov 2022 08:01:39 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[通过年汇总表来提取单项的入库或者发出，使用excel函数offset函数，row函数，column函数]]></title>
      <description><![CDATA[ 　　很多时候，我们为了查阅表格方便，制作的汇总表中是一对多的情况，比如一个产品，有入库，出库，退货等情况，在月开，或者是年开，要把单独的入库，或者是出库进行分表出来时，就相对麻烦。　 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel99.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel99.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 18 Nov 2022 03:39:30 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[提取excel表格中某列不重复数据（去重），使用excel函数index函数，small函数，if函数，match函数，row函数]]></title>
      <description><![CDATA[ 基础表格，原数据，都是记录方便于记录数据，按以后的需求，可以整理成需要的各种表格。
但有时，我们在统计的时候，却需要把原数据进行处理，比如，提取出不同的类型，名称，型号等等。
如下，要 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel92.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel92.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Tue, 15 Nov 2022 08:09:58 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[办公软件Excel表格公式解释说明]]></title>
      <description><![CDATA[ Excel公式 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel72.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel72.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 26 Oct 2022 00:58:57 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[Excel公式运算显示#N/A错误原因是原数据有异常]]></title>
      <description><![CDATA[ 在使用Excel的过程中，免不了会碰到各种各样的错误，比如输入正常的excel公式后，有的运算并显示出了正确的结果，而有的，却显示了#N/A。

如下图gif动画演示内容：



可以看出，日期为2 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel71.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel71.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 26 Oct 2022 00:46:39 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[以男60岁，女50岁为退休原则按身份证出生年月日计算退休日期，使用excel函数edate函数，mod函数，mid函数]]></title>
      <description><![CDATA[ 　　计算退休时间。　　方法:　　1、选定目标单元格。　　2、输入公式:=EDATE(D3,MOD(MID(C3,17,1),2)*120+600)。　　3、Ctrl+Enter填充。　　4、设置单元格格式为:日期，并 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel66.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel66.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Tue, 18 Oct 2022 07:44:26 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[通过18位身份证号中的出生年月日来计算年龄，使用excel函数中的datedif函数，today函数]]></title>
      <description><![CDATA[ 　　身份证是18位的，其中第7位开始后的8位，就是出生年月日，可以使用mid函数进行处理。结果见gif动画中的d3单元格。　　而年龄只是出生年月日，和当前日期进行比较，计算，可以直接使 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel65.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel65.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Tue, 18 Oct 2022 07:32:08 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[从18位身份证号中提取出生日期，要求为年月日，使用excel函数text函数和mid函数]]></title>
      <description><![CDATA[ 　　提取出生年月　　方法:　　1、选定目标单元格。　　2、输入公式:=TEXT(MID(C3,7,8),&amp;quot;00-00-00&amp;quot;)。　　3、Ctrl+Enter填充。　　备注:　　如果对提取的出生年月没有格式 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel63.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel63.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Tue, 18 Oct 2022 06:08:28 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[1个公式生成excel全年日历，使用excel函数if函数，month函数，date函数，weekday函数，row函数，column函数，int函数]]></title>
      <description><![CDATA[ 将excel公式复制到excel表格中的D7单元格，通过左拉，下拉，直接生成，在E2单元格输入对应的年份即可。 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel59.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel59.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sun, 09 Oct 2022 01:46:40 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[2018年10月1日以后个人所得税计算公式及全年一次性奖金的个税计算方法]]></title>
      <description><![CDATA[ 先上一张图：2018年10月1日前和2018年10月1日后新旧个人所得税税率对比表


对于以前的，只是了解，不是重点，重点是月薪8000以内的，以8000为例，税金为超过5000以上的部分，3000*3%-速 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel56.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel56.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Wed, 05 Oct 2022 14:21:52 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[使用INDIRECT函数和RANDBETWEEN函数生成2个字的姓名和3个字的姓名]]></title>
      <description><![CDATA[ 　　要求：使用excel公式随机生成2个字的姓名和3个字的姓名。　　目的：对于各种演示，可以随机生成批量数据。　　gif动画演示如下：　　动画演示中E5单元格公式为：　　=INDIRECT(&amp;quot;B ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel55.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel55.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sun, 02 Oct 2022 12:33:10 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[在Excel表格中，对描述中包括（包含）的部分内容进行条件求和]]></title>
      <description><![CDATA[ 　　假设有一个数据，产品描述，还有对应的消耗量，现要求对描述列中，包含A料的，以及包含B料的内容进行分类求和。　　如下图：　　下面，我们来看一下gif动画的演示操作。　　C12单元格 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel145.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel145.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Fri, 24 Jun 2022 08:52:55 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[在Excel表格中按一定条件进行归类整理，index+small+if，offset+small+if]]></title>
      <description><![CDATA[ 　　假设一下情况：　　左侧是我们的原始数据，有姓名，以及每个人对应所在的班级，但可能存在比较乱的情况(一年级，二年级，三年级杂乱排列的)　　要求：　　把不同的年级进行一下整理，整 ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel144.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel144.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Mon, 20 Jun 2022 06:11:33 +0000</pubDate>
    </item>
    <item>
      <title><![CDATA[在excel表格中计算各商品的总排名以及各商品在分店中的小排名]]></title>
      <description><![CDATA[ 　　一，我们计算各商品销售额的总排名。　　使用rank函数和sumproduct函数，两种方法进行gif动画演示教程操作　　rank函数如下截图，长江店的百货，排名第11位。　　D3单元格公式： ]]></description>
      <link>http://www.zhizuobiaoge.com/excelgongshi/excel142.html</link>
      <guid>http://www.zhizuobiaoge.com/excelgongshi/excel142.html</guid>
      <category>Excel公式</category>
      <author><![CDATA[]]></author>
      <pubDate>Sat, 04 Jun 2022 07:59:21 +0000</pubDate>
    </item>
  </channel>
</rss>