Why does it says index is outside the interval when I write exactly the same as in the video?
Please help me /Bjorn from Sweden
Quote:
Option Explicit
Sub Variabletest()
Dim myString As String
myString = Worksheets("Sheet1").Range("A1").Value
Range("B3").Value = myString & " World!"
Range("A4").Value = myString & myString & myString
Range("B5").Value = myString & " and Goodbye"
End Sub
|
Like this?