Hello,
I want write a vba code that will be able to chech if all the refernces/addresses/ranges of cell's function are refering to the same row number.

for example if in cell F11 there's a function like this
=MAX(B11:C11)+ROUND(A11,2)+E11 all the refernces will enter an array
a(0) = B11:C11
a(1) = A11
a(2) = E11
and each will be checked if indid it is in row number 11.

The problem is that the code has to work with any function and the saperator between
the refernces are different : brackets,operators,coma ets.
How do I isolate and recocnise automatocly all the refernces ?
tnx.