Hi,
I Have the following code that basically looks a value in BC13 and BB13 and puts that value in c4 and c6 respectively. If the Value in BC however is HealthAlliance then I do want to run the code, so that is how I cam up with the following:
If .Range("bc13").Value <> HealthAlliance Then
.Range("C4").Value = .Range("bc13")
.Range("c6").Value = .Range("bb13")
.Range("BB13:BC500").Value = ""
.Range("A12").Select
End If
--> What is happing id that the code is running even if the value in BC13 is HealthAlliance. What is the proper way to do this?
Thanks
I Have the following code that basically looks a value in BC13 and BB13 and puts that value in c4 and c6 respectively. If the Value in BC however is HealthAlliance then I do want to run the code, so that is how I cam up with the following:
If .Range("bc13").Value <> HealthAlliance Then
.Range("C4").Value = .Range("bc13")
.Range("c6").Value = .Range("bb13")
.Range("BB13:BC500").Value = ""
.Range("A12").Select
End If
--> What is happing id that the code is running even if the value in BC13 is HealthAlliance. What is the proper way to do this?
Thanks