I want to set a value for a cell [S12] in a sheet called "AlphaPackage_2017" based on the other cell's value [S3] .
checking should follow the value in cell [S3] for any changing value and update immediately the value in cell [S12].
I wrote the below code:
Do
If S3.Value > 6 Then
S12 = 20
Else
S12 = 7
End If
Loop
the code does not work correctly, any advise is appreciated ... and also where the code should be write: in Module or in Page?
