开发者

How to find if value exists in column, and enter if it not found?

开发者 https://www.devze.com 2023-03-02 04:20 出处:网络
I\'m working with a table and an user-defined variable that may or may not exist in column A.If it does exist, I need to be able to select that cell.If it doesn\'t exist, I need to enter the user-defi

I'm working with a table and an user-defined variable that may or may not exist in column A. If it does exist, I need to be able to select that cell. If it doesn't exist, I need to enter the user-defined variable into the cell. I think an If/Then/Else statement should work, but I can't开发者_StackOverflow figure out how the syntax would work.


Lance was on the right path, but I think he made a small error. If I understand you correctly, the following will do what you need:

If rngCell.Value = userVariable Then
  rngCell.Select
Else
  rngCell.Value = userVariable
End If


Here's one way:

IF userCell <> "" Then
  userCell.Select
Else
  userCell = userVariable
End If
0

精彩评论

暂无评论...
验证码 换一张
取 消