Hello i am really struggling with this.
I have a macro that takes raw data into a certain form. My range is AK:CH. However, there are certain columns that I do not want to include in that range. The columns I want to evaluate contains the text "Height".
or would it be easier to mention specific columns that i do not include ("CC") or is there a way to break up an index array so that it starts and stops before and after a column i do not want??
I have a macro that takes raw data into a certain form. My range is AK:CH. However, there are certain columns that I do not want to include in that range. The columns I want to evaluate contains the text "Height".
HTML:
Cells(PoleRow, 3).Formula = "=IFERROR(INDEX($AK$12:$CH$12,1,MATCH(MIN($AK$" & PoleRow & ":$CH$" & PoleRow & "),$AK$" & PoleRow & ":$CH$" & PoleRow & ", 0)),"""")"
or would it be easier to mention specific columns that i do not include ("CC") or is there a way to break up an index array so that it starts and stops before and after a column i do not want??