Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Range("D2:D3").formula = "=E2+K2"
With ActiveCell
Select Case .Value
Case 1
Cells(.Row, "D").Formula = _
"=" & Cells(.Row, "E").Address(False, False) & "+" & _
Cells(.Row, "K").Address(False, False)
End Select
End With
R1 = 2
R2 = 10
For r = R1 to R2
Select Case Cells(r, "A").Value
Case 1
Cells(r, "D").Formula = _
"=" & Cells(r, "E").Address(False, False) & "+" & _
Cells(r, "K").Address(False, False)
End select
Next
...
nQty = Cells(r, "E").Value
...