- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
返回错误的代码是以下内容的第一行:
While StrComp(selectedRecipe, dataSheet.Cells(i, 1)) <> 0
recipeRow = recipeRow + 1
i = i + 1
Wend
最佳答案
1) 确保 dataSheet 实际设置为有效工作表。 2)正如共产国际所说,您需要从 1 开始,因为 Excel 是基于 1 而不是基于零。 3)您需要确保不会溢出行数:
Public Sub CheckRecipe()
Dim selectedRecipe As String
Dim i As Long
selectedRecipe = "Test"
i = 1
While StrComp(selectedRecipe, ThisWorkbook.ActiveSheet.Cells(i, 1).Value) <> 0 _
And i < ThisWorkbook.ActiveSheet.UsedRange.Rows.Count
i = i + 1
Wend
End Sub
关于Excel VBA :How to use StrComp in a While statement when one string is a text value contained in a cell?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53403494/
StrComp 函数 返回一个表明字符串比较结果的值。 StrComp(string1, string2[, compare]) 参数 string1 必选项。任意有效的字符串表达式。
我在使用 StrComp 时遇到问题VBA 中用于比较两个字符串的函数。 Public Function upStrEQ(ByVal ps1 As String, ByVal ps2 As Strin
使用的好处是什么(如果有的话) If StrComp(strVal1, strVal2, vbTextCompare) = 0 Then 而不是使用 If strVal1 = strVal2 Then
目标 按字典顺序比较两个字符串,忽略大小写。 使用 StrComp 的可能解决方案 考虑以下脚本: val1 = "test9999" val2 = "TEST_59895" LexCompare v
在我下面的代码中,我设置了一个 ReadString,它读取用户输入并在 exec.Command 中传递它。 这很好用,但是当我尝试将字符串与 vbscript 中的硬编码字符串进行比较时(在本例中
返回错误的代码是以下内容的第一行: While StrComp(selectedRecipe, dataSheet.Cells(i, 1)) <> 0 recipeR
我是一名优秀的程序员,十分优秀!