I am having trouble moving data from one column (I am using this column as a helper column for data based on another sheet) into a different column on the same sheet, but without bringing along blank cells.
This is the situation:
[TABLE="width: 130"]
<!--StartFragment--> <colgroup><col width="65" span="2" style="width:65pt"> </colgroup><tbody>[TR]
[TD="width: 65"]A[/TD]
[TD="width: 65"]B[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]First Name[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Last Name[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Address[/TD]
[/TR]
<!--EndFragment--></tbody>[/TABLE]
What I've been trying to get:
[TABLE="width: 130"]
<!--StartFragment--> <colgroup><col width="65" span="2" style="width:65pt"> </colgroup><tbody>[TR]
[TD="width: 65"]A[/TD]
[TD="width: 65"]B[/TD]
[/TR]
[TR]
[TD]First Name[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Last Name[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Address[/TD]
[TD][/TD]
[/TR]
<!--EndFragment--></tbody>[/TABLE]
I need each different category (name, address, etc) to be in their own cell. Is there a way to do this without messing with the helper column's (column B's) function? The function is an IF function.
I have tried different array functions with no success.
This is the situation:
[TABLE="width: 130"]
<!--StartFragment--> <colgroup><col width="65" span="2" style="width:65pt"> </colgroup><tbody>[TR]
[TD="width: 65"]A[/TD]
[TD="width: 65"]B[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]First Name[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Last Name[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Address[/TD]
[/TR]
<!--EndFragment--></tbody>[/TABLE]
What I've been trying to get:
[TABLE="width: 130"]
<!--StartFragment--> <colgroup><col width="65" span="2" style="width:65pt"> </colgroup><tbody>[TR]
[TD="width: 65"]A[/TD]
[TD="width: 65"]B[/TD]
[/TR]
[TR]
[TD]First Name[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Last Name[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Address[/TD]
[TD][/TD]
[/TR]
<!--EndFragment--></tbody>[/TABLE]
I need each different category (name, address, etc) to be in their own cell. Is there a way to do this without messing with the helper column's (column B's) function? The function is an IF function.
I have tried different array functions with no success.