I am working on a spreadsheet where a user will input data into 3 tabs and the sheet will combine this data in the desired order for the format on the Worksheet tab. I came up with a formula (I call it the Spine) that numbers each line submitted on each tab to give it its order from top to bottom when its combined on the Worksheet tab.
Below is a screenshot of my regular formula worksheet and the formula in A12
So the problem here is that Vlookup in column C that is using A12 as a lookup value is returning an error (iferror has it as blank). The formula in E12 is verifying that A12 matches the "1.008" cell that exists on the tab from which its looking up. If this was working correctly it would be displaying up to carrier 10 on both lists.
Playing around with this I have noticed a few behaviors:
So the problem I am left with is I am trying to correct this within the spine formula. I cannot reference any broken vlookups to decide where to round the spine and when to not to, it would be circular referencing. The whole point of my spine is to vlookup off of that value.
I am hoping this is one of the more complicated vlookup questions posted on this forum. If any more context is needed let me know.
And yes all of these columns are formatted the same!
Below is a screenshot of my regular formula worksheet and the formula in A12
Excel Formula:
=IF(COUNTIF('Manual Carrier Responses'!A:A,A11+0.001)=1,A11+0.001,ROUND(IF(MOD(A11,1)=0,A11+0.001,IF(COUNTIF('FF Data'!A:A,A11+0.001)=1,A11+0.001,ROUNDDOWN(A11,0)+1)),3))
So the problem here is that Vlookup in column C that is using A12 as a lookup value is returning an error (iferror has it as blank). The formula in E12 is verifying that A12 matches the "1.008" cell that exists on the tab from which its looking up. If this was working correctly it would be displaying up to carrier 10 on both lists.
Playing around with this I have noticed a few behaviors:
- First if I were to overwrite the formula in A12 with the number "1.008" the lookup in C12 works but it also fixes the lookup in C13 as well but only goes that far.
- If I round the formula for my Spine with the below adjustment I get a different result, closer to complete but still issues.
Excel Formula:
=ROUND(IF(COUNTIF('Manual Carrier Responses'!A:A,A11+0.001)=1,A11+0.001,ROUND(IF(MOD(A11,1)=0,A11+0.001,IF(COUNTIF('FF Data'!A:A,A11+0.001)=1,A11+0.001,ROUNDDOWN(A11,0)+1)),3)),3)
So the problem I am left with is I am trying to correct this within the spine formula. I cannot reference any broken vlookups to decide where to round the spine and when to not to, it would be circular referencing. The whole point of my spine is to vlookup off of that value.
I am hoping this is one of the more complicated vlookup questions posted on this forum. If any more context is needed let me know.
And yes all of these columns are formatted the same!