I am currently trying to take two ranges and combine them into one range. My ranges are dynamic because they change based off the date. For example, Suppose the two ranges I want to combine are A3:A10 and the other C7:C12. And every day it refreshes and moves the index by 1... so the new ranges are A4:A11 and C8:C13. I want to combine the two into one range into a different column. I am assuming that this will have to be implemented in vba... however, I have been having minimal luck. I have values that indicate what row number I want to make my ranges within my worksheet. I've tried making VBA macros, but I have been having no luck. I keep getting 9(the first term of the range I wanted) as my result and not a range, but I want to use the function to print the whole combined range. I have also thought about using Sub, but I am not very experienced in using Sub.
Here's what I have so far... Please let me know any suggestions or tips.
Function FiveYTwoY()
Worksheets("India Data").Activate
index5_90 = Cells(10, 2).Value '5Y 90 day index
index5_yes = Cells(9, 2).Value '5Y yesterday index
index2_90 = Cells(7, 2).Value '2Y 90 day index
index2_yes = Cells(6, 2).Value '2Y yesterday index
Dim range5 As Range
Set range5 = Range(Cells(index5_90, 20), Cells(index5_yes, 20))
Dim range2 As Range
Set range2 = Range(Cells(index2_90, 17), Cells(index2_yes, 17))
FiveYTwoY = Union(range2, range5)
End Function
Thanks for the help