Hello great, friendly & helping people!
I have the following question with VBA:
I am using cell references, which I usually refer like this:
However, due to some strange reason, there are a few, which do not want to be referred that way!
They want to be referred as following:
Why should I add the sheet as well? It seems like the cell reference is declared somehow locally, but how did this happened?
I do not like it, because it makes my code inconsistent. Any ideas?
I have the following question with VBA:
I am using cell references, which I usually refer like this:
Code:
[irr_cf_at].FormulaR1C1 = "=ma_irr_cf_at"
However, due to some strange reason, there are a few, which do not want to be referred that way!
They want to be referred as following:
Code:
[irr_cf_at].FormulaR1C1 = "=master!ma_irr_cf_at"
Why should I add the sheet as well? It seems like the cell reference is declared somehow locally, but how did this happened?
I do not like it, because it makes my code inconsistent. Any ideas?