I am having some trouble concating 2 strings. Here is what I am doing :
Dim bound1 As String
Dim bound2 As String
bound1 = "E6:E" & 6 + tTest_Threshold
bound2 = "E" & 6 + index1 & ":E" & 6 + index2
Worksheets(chipSheet1).Cells(currIteration + 7, 5).FormulaR1C1 = "=TTEST(" & bound1 & "," & bound2 & ",2,1)"
However, it is printing : =TTEST('E6':'E12','E8':'E14',2,1)
I donot understand, why "'" is printed in the Excel formula. Any idea what I am doing wrong in the code ?
Thanks
"E6:E" & 6(giving "E6:E6"), and then trying to add an integer to that, causing confusion.