I normally use VBA in Access. I have just started doing a projet in Excel.
How do I use VBA in Excel?
For example:
I want to check if a range from c4:z4 has a value of "1". If yes I want to change the value to 2. If not I want to delete the value in the cell.
I tried
Command 1
If me.cells.text = "1" then
Me.cells.text = 3
Else
Me.cells.text = Null
End if
Thanks for the help
S.
How do I use VBA in Excel?
For example:
I want to check if a range from c4:z4 has a value of "1". If yes I want to change the value to 2. If not I want to delete the value in the cell.
I tried
Command 1
If me.cells.text = "1" then
Me.cells.text = 3
Else
Me.cells.text = Null
End if
Thanks for the help
S.