I would like excel to input the entire column with the title "Section" into the range variable 'sectioncol'.
Set sectioncol = range(range("A1:R1").Find(what:="Section", LookIn:=xlValues, lookat:=xlWhole, MatchCase:=False).Address & ":" & range("A1:R1").Find(what:="Section", LookIn:=xlValues, lookat:=xlWhole, MatchCase:=False).End(xlDown).Address)
I was expecting the range variable to return the cells containing data under the section column.