Hello
How can i incorporate the Range syntax into Cell syntax
Private Sub CmbBooks_click()
Dim idx As Long
idx = CmbBooks.ListIndex
If idx <> -1 Then
ws.Range("B" & idx +2 ).Value
End If
End sub
incorporating from above code into below seems not working
Dim idx As Long
idx =...