Sub Tryout()
SheetName = ActiveSheet.Name
DirectoryNameDeelEen = "'C:\Temp\[SourceFile.xls]"
DirectoryNameDeelTwee = "'!$1:$65536"
ActiveCell.Formula = _
"=INDEX(" & DirectoryNameDeelEen & " & Sheetname & " & DirectoryNameDeelTwee & " , Row(), Column())"
End Sub
The above would generate the following formula string:
=INDEX('C:\Temp\[SourceFile.xls] & Sheetname & '!$1:$65536 , Row(), Column())
Ampersand in VBA is used to concatenate strings, the use of quotations determines where you are entering text explicitly... perhaps we can explain using a simpler example, eg:
Dim a As String, b As String
a = "Hello"
b = "World"
Debug.Print a & " & b " 'outputs string Hello & b
Debug.Print a & b 'outputs string HelloWorld
Debug.Print a & " " & b 'outputs string Hello World (ie we add a space)
So in the first debug statement the second Ampersand in the code is seen by VBA as being part of an explicitly defined text string (& b) whereas is the 2nd & 3rd examples it is only being used to concatenate variables into one string. The 3rd example illustrates how we can insert explicit strings between our concatenated string variables.
So to generate your formula which if entered in native XL would be:
=INDEX('C:\Temp\[SourceFile.xls]Target'!$1:$65536,Row(),Column())
(whether I agree with the formula is different :-))
To generate the above in VBA you thus need:
"=INDEX(" & DirectoryNameDeelEen & Sheetname & DirectoryNameDeelTwee & ",Row(),Column())"
So you use & to concatenate the string variables into one string... & should not be used literally (ie explicitly in the string itself) .. the only parts of the string that are fixed (ie no variables) are:
"=INDEX("
and
",ROW(),COLUMN())"
The remainder should be generated by concatenating the variables.
Make sense ?
(I guess re: the formula using in the way you're using it you could set both row & column index to 0 rather than using ROW(),COLUMN())
Bookmarks