Littleme
New Member
Hello again!
I'm stumped again...
Like the title says, I want users to select cell range on sheet1, but code fills corresponding cells on sheet2 with value "1". Conditional formatting then reflects this on sheet1. (Trying to keep sheet1 free from calculations as to not scare user)
Any takers?
I'm stumped again...
Like the title says, I want users to select cell range on sheet1, but code fills corresponding cells on sheet2 with value "1". Conditional formatting then reflects this on sheet1. (Trying to keep sheet1 free from calculations as to not scare user)
Any takers?
Code:
Sub Heltid()
With Application
.ScreenUpdating = False
.EnableEvents = False
.Calculation = xlCalculationManual
End With
Dim SelRange As Range
Set SelRange = Selection
For Each cell In SelRange
cell.Value = "1" * 1
Next
With Application
.ScreenUpdating = True
.EnableEvents = True
.Calculation = xlCalculationAutomatic
End With
End Sub