作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 Excel 表格,有 3 个输入列。最后一列是输出列,其中包含我需要的结果。
Excel Input and Output data
这是我的示例宏:
Function month(x As string, y As string, z As String) As String
If (((x = "January.Winter") Or (y = "January.Winter")) And (z = "jan")) Then
month= "true"
Else If (((x = "January.2016") Or (y = "January.2016")) And (z = "jan")) Then
month= "true"
Else If (((x = "January.today") Or (y = "January.today")) And (z = "jan")) Then
month= "true"
Else
month= False
End If
End Function
最佳答案
脑海中浮现的三种方式:
If LCase$(x) Like "january*" Or LCase$(y) Like "january*" Then
...
If InStr(LCase$(x), "january") Or InStr(LCase$(x), "january") Then
...
If LCase$(Left$(x, 7)) = "january" Or LCase$(Left$(y, 7)) = "january" Then
...
LCase$()
强制文本小写并防止任何大写问题 - 在比较字符串时总是值得考虑的事情。
关于excel - 如何在 VBA 中使用 "contains"函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36211757/
我是一名优秀的程序员,十分优秀!