跳到主要内容

如果单元格在Excel中为空,如何不计算(忽略公式)?

假设我们有一批学生,他们的生日在Excel中,我们需要计算学生的年龄。 通常,我们可以使用=(TODAY()-B2)/365.25的公式来计算年龄。 但是,由于有些学生的生日不是偶然发生的,所以我们变得荒谬。 为避免错误,如果Excel中的单元格为空白,我们不必计算或忽略公式。

如果Excel中的单元格为空,则不计算(忽略公式)
doc公式忽略空白1


如果Excel中的单元格为空,则不要计算或忽略公式

要忽略公式或不计算Excel中特定单元格是否为空白,我们需要使用IF函数检查特定单元格是否为空白,如果不为空白,则可以继续使用原始公式进行计算。

= IF(Specific Cell <>“”,Original Formula,“”)

在开始讨论的情况下,我们需要输入 = IF(B2 <>“”,(TODAY()-B2)/365.25,“”) 到单元格C2中,然后将“填充手柄”拖动到所需的范围。

备注:B2表示单元格B2充满了生日,如果单元格B2为空白,它将忽略公式并返回空白;如果单元格B2充满了生日,则将返回年龄。

另外,我们也可以将IF函数和原始公式组合为 = IF(Specific Cell =“”,“”,“原始公式”),在本例中,公式显示为 = IF(B2 =“”,“”,(TODAY()-B2)/365.25).


演示:如果Excel中的单元格为空,则不计算(忽略公式)


Kutools for Excel:超过 300 个方便的工具触手可及! 立即开始 30 天免费试用,没有任何功能限制。 立即下载!

在Excel中选择的所有空白单元格中快速输入破折号,某些文本或NA

Kutools for Excel的 填充空白单元格 实用程序可以帮助您仅在Excel中单击几下,即可将选定的文本(例如“警告”)快速输入到选定范围内的所有空白单元格中。


广告填充空白单元格5


箭头蓝色右气泡相关文章

最佳办公生产力工具

🤖 Kutools 人工智能助手:基于以下内容彻底改变数据分析: 智能执行   |  生成代码  |  创建自定义公式  |  分析数据并生成图表  |  调用 Kutools 函数...
热门特色: 查找、突出显示或识别重复项   |  删除空白行   |  合并列或单元格而不丢失数据   |   不使用公式进行四舍五入 ...
超级查询: 多条件VLookup    多值VLookup  |   跨多个工作表的 VLookup   |   模糊查询 ....
高级下拉列表: 快速创建下拉列表   |  依赖下拉列表   |  多选下拉列表 ....
列管理器: 添加特定数量的列  |  移动列  |  切换隐藏列的可见性状态  |  比较范围和列 ...
特色功能: 网格焦点   |  设计图   |   大方程式酒吧    工作簿和工作表管理器   |  资源库 (自动文本)   |  日期选择器   |  合并工作表   |  加密/解密单元格    按列表发送电子邮件   |  超级筛选   |   特殊过滤器 (过滤粗体/斜体/删除线...)...
前 15 个工具集12 文本 工具 (添加文本, 删除字符,...)   |   50+ 图表 类型 (甘特图,...)   |   40+ 实用 公式 (根据生日计算年龄,...)   |   19 插入 工具 (插入二维码, 从路径插入图片,...)   |   12 转化 工具 (小写金额转大写, 货币兑换,...)   |   7 合并与拆分 工具 (高级组合行, 分裂细胞,...)   |   ... 和更多

使用 Kutools for Excel 增强您的 Excel 技能,体验前所未有的效率。 Kutools for Excel 提供了 300 多种高级功能来提高生产力并节省时间。  单击此处获取您最需要的功能...

产品描述


Office Tab 为 Office 带来选项卡式界面,让您的工作更加轻松

  • 在Word,Excel,PowerPoint中启用选项卡式编辑和阅读,发布者,Access,Visio和Project。
  • 在同一窗口的新选项卡中而不是在新窗口中打开并创建多个文档。
  • 每天将您的工作效率提高50%,并减少数百次鼠标单击!
Comments (9)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Bagaimana rumus if bertingkat untuk kondisi seperti ini

Jika kolom notes terisi maka tetap meet SLA

Jika kolom notes kosong maka,
Jika kolom Days = 1 maka meet
Jika lebih dari dari itu maka miss
jika kosong maka NO CRF
This comment was minimized by the moderator on the site
FYI for Calculating due dates:
=IF(A1<>””,A1+7,””)
A1:1/1/21 would return 1/8/21
This comment was minimized by the moderator on the site
I am trying to return the earliest date in a range of dates in 6 columns based on the value of another column If I were to say it out loud it would be:
If M6:M603 equals 1, then identify the minimum date in the following columns G6:L603 but do not count the value if the cell is blank and insert this into another sheet on the workbook. I get very close but it keeps returning the date 00/01/1900. Can anyone help?
This comment was minimized by the moderator on the site
How to calculate Non Empty cells that contains formula?
This comment was minimized by the moderator on the site
Hi Aamir.Ali002,
You can find out the cells which are formula cells and return blank with a formula. Says the first cell is H2, and apply this formula =IF(AND(E2=0,ISFORMULA(E2)=TRUE),1,0), and then drag the cell handle to copy this formula to other cells.
Then sum the formula cells to get the total number of cells which are formula cells and return blank.
This comment was minimized by the moderator on the site
Finally worked out how to count a complex range of conditions over an extended period of time but only if the date of the events is not blank with this:
=IF($B608<>"",(COUNTIF($O$6:$O608,Q$5)),"")
In other words, "count apples or oranges but not if column B (dates) is blank".
THANK YOU, it has been bugging me for weeks to get this so I can make a chart from a date in the past to infinity (so as not to have to keep adjusting the chart range each day as data is entered
This comment was minimized by the moderator on the site
how about in months?
This comment was minimized by the moderator on the site
Hi israelroy,
Would you describe your problems in detail? More information will help us understand your problem clear. Thank you!
This comment was minimized by the moderator on the site
thank for share
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations