我们可以检查哪种自定义类型应用于Excel表中的单元格

发布于 2025-01-22 04:20:39 字数 473 浏览 0 评论 0原文

我有一个Excel表,其中2种不同的自定义类型用于一列。我如何区分这两个?是否可以使用=如果?如果是这样,我需要使用什么条件?我尝试了= type(g7),但它给出了两者的数字。细胞没有公式。

”在此处输入图像说明”

I have an Excel sheet where 2 different Custom Type is applied for one column. How can I differentiate between those two? Is it possible using =IF? If so what condition do I need to use? I tried =TYPE(G7) but it gave Numeric for both. There is no formula for the cells.

enter image description here

enter image description here

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

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

发布评论

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

评论(1

上课铃就是安魂曲 2025-01-29 04:20:39

我认为您无法使用工作表函数来确定这一点,但是使用用户定义的函数很简单:

要输入此用户定义的函数(UDF), alt-f11 打开Visual Basic Editor。
确保您的项目在项目Explorer窗口中突出显示。
然后,从顶部菜单中选择insert/Module
将代码粘贴到打开的窗口中。

要使用此用户定义的函数(UDF),请在某些单元格中输入一个公式,例如= nf(cell_reference)

Function NF(rng As Range) As String
    Application.Volatile
    NF = rng.NumberFormat
End Function

这将单元格式返回文本字符串。因此,要确定它是否是CR,

is it a cr? =ISNUMBER(SEARCH("Cr",nf(E6)))

可以用作逻辑测试

I don't think you can determine that with a Worksheet Function, but it is simple with a User Defined Function:

To enter this User Defined Function (UDF), alt-F11 opens the Visual Basic Editor.
Ensure your project is highlighted in the Project Explorer window.
Then, from the top menu, select Insert/Module and
paste the code below into the window that opens.

To use this User Defined Function (UDF), enter a formula like =NF(cell_reference) in some cell.

Function NF(rng As Range) As String
    Application.Volatile
    NF = rng.NumberFormat
End Function

This returns the cell format as a text string. So to determine whether it is a Cr, something like

is it a cr? =ISNUMBER(SEARCH("Cr",nf(E6)))

can be used as a logical test

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