excel间隔数据次低价公式
## English Answer:
Formula for the Second Lowest Value in a Range with Gaps.
To find the second lowest value in a range with gaps, you can use the following formula:
=SMALL(IF(ISNUMBER(A1:A10),A1:A10),2)。
Let's break down the formula:
ISNUMBER(): This function checks if the cells in the range A1:A10 contain numeric values. It returns TRUE for numeric values and FALSE for non-numeric values (e.g., text or empty cells).
IF(): This function evaluates a logical expression (in this case, ISNUMBER()) and returns a different value based on the result. If the expression is TRUE, it returns the value in cell A1, and if the expression is FALSE, it returns a blank value.
A1:A10: This is the range of cells where you want to find the second lowest value.
So, the formula effectively filters out non-numeric values from the range A1:A10 and then uses the SMALL() function to return the second smallest value among the remaining numeric values.
Example:
Suppose you have the following data in range A1:A10:
A1: 10。
A2: 15。
A3:
A4: 20。
A5: 12。
isnumber函数的使用方法及实例
A6:
A7: 18。
A8: 14。
A9:
A10: 16。
The formula `=SMALL(IF(ISNUMBER(A1:A10),A1:A10),2)` would return the value 12, which is the second lowest value in the range (after 10).
## 中文回答:
存在空值的范围中次低价公式。
若要查存在空值的范围中次低价,可使用以下公式:
=SMALL(IF(ISNUMBER(A1:A10),A1:A10),2)。
公式解读:
ISNUMBER(): 此函数检查范围 A1:A10 中的单元格是否包含数值。对于数值,它返回 TRUE,对于非数值(例如文本或空单元格),它返回 FALSE。
IF(): 此函数计算逻辑表达式(在此例中为 ISNUMBER()),并根据结果返回不同的值。如果表达式为 TRUE,它返回单元格 A1 中的值,如果表达式为 FALSE,它返回空值。
A1:A10: 这是要查次低价的单元格范围。
因此,公式有效地从范围 A1:A10 中筛选出非数值,然后使用 SMALL() 函数返回剩余数值中的第二小值。
实例:
假设范围 A1:A10 中有以下数据:
A1: 10。
A2: 15。
A3:
A4: 20。
A5: 12。
A6:
A7: 18。
A8: 14。
A9:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论