Hello... Ive spent a couple of days perusing this wonderful forum and found a great solution to my problem, but there's just one thing preventing it from functioning properly... the old "blank cell that isn't truly blank" conundrum.
Here's what Im trying to do. (from actual workbook)
I want to populate a list only of items which have a value after them. If no value, then do not display.
Easy enough for static data.. but this is not my case.
COLUMN COLUMN
AM AO
[TABLE="class: m_-4287663419734647240gmail-wysiwyg_dashes, width: 216"]
<tbody>[TR]
[TD="colspan: 2"]Hibachi Salad[/TD]
[TD]0.625[/TD]
[/TR]
[TR]
[TD="colspan: 2"]Balsamic Vinaigrette[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]BBQ[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 2"]Buffalo-Garlic[/TD]
[TD]0.125[/TD]
[/TR]
[TR]
[TD="colspan: 2"]Sauce, cashew cream base[/TD]
[TD]0.125[/TD]
[/TR]
[TR]
[TD="colspan: 2"]Cashew Cremoso[/TD]
[TD]0.125[/TD]
[/TR]
</tbody>[/TABLE]
Where both columns AM and AO are referencing other parts of the same sheet. These are not static values, rather, they are linked to a menu elsewhere... hence when column AO does not show a value, it still contains a formula, which renders my potential solution worthless.
Im using the following array formula to only display rows where AO does not equal "".
In column AM... =IFERROR(INDEX(AI$49:AI$<wbr>81,SMALL(IF(AJ$49:AJ$81<>"",<wbr>ROW(AI$49:AI$81)-ROW(AI$49)+1)<wbr>,ROWS(AI$49:AI49))),"")
In column AO... =IFERROR(INDEX(AJ$49:AJ$<wbr>81,SMALL(IF(AJ$49:AJ$81<>"",<wbr>ROW(AI$49:AI$81)-ROW(AI$49)+1)<wbr>,ROWS(AI$49:AI49))),"")
WHen I test it against cells with static data, it works great and the blank cells cause both the item and the number to not appear at all in the list (as is the goal).. but when i try it in my recipe list, which is linked, the blank cells are not seen as ""...
How can I edit the above formula to account for this?
Thank you to anyone who can help.
Here's what Im trying to do. (from actual workbook)
I want to populate a list only of items which have a value after them. If no value, then do not display.
Easy enough for static data.. but this is not my case.
COLUMN COLUMN
AM AO
[TABLE="class: m_-4287663419734647240gmail-wysiwyg_dashes, width: 216"]
<tbody>[TR]
[TD="colspan: 2"]Hibachi Salad[/TD]
[TD]0.625[/TD]
[/TR]
[TR]
[TD="colspan: 2"]Balsamic Vinaigrette[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]BBQ[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 2"]Buffalo-Garlic[/TD]
[TD]0.125[/TD]
[/TR]
[TR]
[TD="colspan: 2"]Sauce, cashew cream base[/TD]
[TD]0.125[/TD]
[/TR]
[TR]
[TD="colspan: 2"]Cashew Cremoso[/TD]
[TD]0.125[/TD]
[/TR]
</tbody>[/TABLE]
Where both columns AM and AO are referencing other parts of the same sheet. These are not static values, rather, they are linked to a menu elsewhere... hence when column AO does not show a value, it still contains a formula, which renders my potential solution worthless.
Im using the following array formula to only display rows where AO does not equal "".
In column AM... =IFERROR(INDEX(AI$49:AI$<wbr>81,SMALL(IF(AJ$49:AJ$81<>"",<wbr>ROW(AI$49:AI$81)-ROW(AI$49)+1)<wbr>,ROWS(AI$49:AI49))),"")
In column AO... =IFERROR(INDEX(AJ$49:AJ$<wbr>81,SMALL(IF(AJ$49:AJ$81<>"",<wbr>ROW(AI$49:AI$81)-ROW(AI$49)+1)<wbr>,ROWS(AI$49:AI49))),"")
WHen I test it against cells with static data, it works great and the blank cells cause both the item and the number to not appear at all in the list (as is the goal).. but when i try it in my recipe list, which is linked, the blank cells are not seen as ""...
How can I edit the above formula to account for this?
Thank you to anyone who can help.