Hi, can you help please?
I have a data set that is populated with data from a set of formulas. There are multiple rows and multiple columns. The data set contains blank cells where the formula returns no results.
What i want to do is to create a single list in one column that will be the result of taking each populated cell and appending it to the end of that list.
An example would be (note, you wouldn't see the formula as the result is blank but am showing for illustration):
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Workboots[/TD]
[TD]Tree[/TD]
[TD]=If(A=B,"XYZ","")[/TD]
[/TR]
[TR]
[TD]=If(A=C,"XYZ","")[/TD]
[TD]Banana[/TD]
[TD]Fox[/TD]
[/TR]
[TR]
[TD]=If(A=D,"XYZ","")[/TD]
[TD]Shoe[/TD]
[TD]Dog[/TD]
[/TR]
</tbody>[/TABLE]
The result I need is the data lined up in a single column with the blanks removed:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Workboots[/TD]
[/TR]
[TR]
[TD]Tree[/TD]
[/TR]
[TR]
[TD]Banana[/TD]
[/TR]
[TR]
[TD]Fox[/TD]
[/TR]
[TR]
[TD]Shoe[/TD]
[/TR]
[TR]
[TD]Dog[/TD]
[/TR]
</tbody>[/TABLE]
Thanks for your help!
I have a data set that is populated with data from a set of formulas. There are multiple rows and multiple columns. The data set contains blank cells where the formula returns no results.
What i want to do is to create a single list in one column that will be the result of taking each populated cell and appending it to the end of that list.
An example would be (note, you wouldn't see the formula as the result is blank but am showing for illustration):
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Workboots[/TD]
[TD]Tree[/TD]
[TD]=If(A=B,"XYZ","")[/TD]
[/TR]
[TR]
[TD]=If(A=C,"XYZ","")[/TD]
[TD]Banana[/TD]
[TD]Fox[/TD]
[/TR]
[TR]
[TD]=If(A=D,"XYZ","")[/TD]
[TD]Shoe[/TD]
[TD]Dog[/TD]
[/TR]
</tbody>[/TABLE]
The result I need is the data lined up in a single column with the blanks removed:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]Workboots[/TD]
[/TR]
[TR]
[TD]Tree[/TD]
[/TR]
[TR]
[TD]Banana[/TD]
[/TR]
[TR]
[TD]Fox[/TD]
[/TR]
[TR]
[TD]Shoe[/TD]
[/TR]
[TR]
[TD]Dog[/TD]
[/TR]
</tbody>[/TABLE]
Thanks for your help!