Excel中问号的含义是什么?

发布于 2024-10-10 17:57:48 字数 288 浏览 1 评论 0原文

如果我输入以下公式:

=vlookup(A1,LetterTable,2,False)

A1 设置为“?” (不带引号),LetterTable 包含以下内容:

a   a
b   b
c   c
...  ...
-   -
+   +
?   ?
!   !

它总是给我“a”(不带引号)。这是为什么呢?

另外,如果我将其复制到 vba 中的数组中并循环遍历它,将其与电子表格值进行比较,它也不会找到它。

If I type in this formula:

=vlookup(A1,LetterTable,2,False)

With A1 set to "?" (without the quotes), and LetterTable contains this:

a   a
b   b
c   c
...  ...
-   -
+   +
?   ?
!   !

It always gives me "a" (no quotes). Why is this?

Also, if I copy that into an array in vba and loop through it, comparing it to the spreadsheet value, it won't find it either.

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

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

发布评论

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

评论(1

轻许诺言 2024-10-17 17:57:48

请参阅 http://office.microsoft.com/en-us/ excel-help/vlookup-HP005209335.aspx

如果range_lookup为FALSE且lookup_value为文本,则可以在lookup_value中使用通配符、问号(?)和星号(*)。问号匹配任何单个字符;星号匹配任何字符序列。如果您想要查找实际的问号或星号,请在字符前键入波形符 (~)。

See http://office.microsoft.com/en-us/excel-help/vlookup-HP005209335.aspx:

If range_lookup is FALSE and lookup_value is text, then you can use the wildcard characters, question mark (?) and asterisk (*), in lookup_value. A question mark matches any single character; an asterisk matches any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) preceding the character.

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