Excel中问号的含义是什么?
如果我输入以下公式:
=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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 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.