Hi Guys,
So i have a very long formula with 1,269 characters. Basically, it is composed of multiple ifs, mathematical operations inside and outside of parenthesis.
I have set it up so long ago in specific columns.
I've even added this to vba so that it'll autopopulate in my worksheet.
Problem = The template where I extract data changed. I know I can use Index Match to have my formula refer to the column where the specific header is. But it would be really really long.
Help Needed: Need suggestions on how I can do this efficiently and hopefully permanently regardless of the columns changing
(Take note that I am not to the level yet that I can setup this in VBA - I cannot do multiples IFs and multiple criteria)
Thanks in advance!!!!
So i have a very long formula with 1,269 characters. Basically, it is composed of multiple ifs, mathematical operations inside and outside of parenthesis.
I have set it up so long ago in specific columns.
I've even added this to vba so that it'll autopopulate in my worksheet.
Code:
A = 'HALF OF THE FORMULA
B = 'OTHER HALF OF THE FORMULA
C = A + B
Range("EL2").Formula = C
Problem = The template where I extract data changed. I know I can use Index Match to have my formula refer to the column where the specific header is. But it would be really really long.
Help Needed: Need suggestions on how I can do this efficiently and hopefully permanently regardless of the columns changing
(Take note that I am not to the level yet that I can setup this in VBA - I cannot do multiples IFs and multiple criteria)
Thanks in advance!!!!