FreakyGirl
Member
hello
I have 2 sets of a 5 column array. BB to BF & CB to CF
they are identical in formulas but the values returned are slightly different. this is expected & acceptable.
column BF is where I'm having an issue. its giving me a #VALUE error even thou the SAME formula in CF works great.
works in CF
does not work in BF
works in BF but doesn't help me.
not sure why the ">" would make a diff in the BF formula. I even changed it to >1 thinking that would give me the same result as >=2 but I got the same #VALUE error.
logic:
BB = take the name in AI & give it a unique value.
BC = convert BB from text to a number
BD = rank the number in BB
BE = count many times the value in BC shows up
BF = if the count is 2 or higher then add the row number to BC to break any ties
its the same logic from CB to CF. the only diff is that CB references BS.
what am I missing?
thanks in advance for any help & have a great day!
FreakyGirl
I have 2 sets of a 5 column array. BB to BF & CB to CF
they are identical in formulas but the values returned are slightly different. this is expected & acceptable.
column BF is where I'm having an issue. its giving me a #VALUE error even thou the SAME formula in CF works great.
Code:
=IF(CE2>=2,CC2+ROW(),CC2)
Code:
=IF(BE2>=2,BC2+ROW(),BC2)
Code:
=IF(BE2=2,BC2+ROW(),BC2)
not sure why the ">" would make a diff in the BF formula. I even changed it to >1 thinking that would give me the same result as >=2 but I got the same #VALUE error.
logic:
BB = take the name in AI & give it a unique value.
BC = convert BB from text to a number
BD = rank the number in BB
BE = count many times the value in BC shows up
BF = if the count is 2 or higher then add the row number to BC to break any ties
its the same logic from CB to CF. the only diff is that CB references BS.
what am I missing?
thanks in advance for any help & have a great day!
FreakyGirl