Hi,
I’ve an excel sheet which is having data till column ET. From the Column AY2 to ET2 has formula for each column. I need to expand this formulas to all the column and rows respectively.
Currently i’ve done like, taking the array variable
FormualRanges= {“AY”, “AZ”, “BA”, “BB”, “BC”, “BD”, “BE”, “BF”, “BG”, “BH”, “BI”, “BJ”, “BK”, “BL”, “BM”, “BN”, “BO”, “BP”, “BQ”, “BR”, “BS”, “BT”, “BU”, “BV”, “BW”, “BX”, “BY”}
Then inside the for each loop i’ve auto filled the row 2 (ex: AY2 ) till AY+(dtData.Rows.Count+1)
Now i’ve to extend the formula till column ET. I can follow the same method as above by including the column inside array but I want to know is there any other way i can do it without adding it in array or any other select activity.
Thanks in advance.