Hello,
I have a table of data with numbers and some NA() values. I need to find a way to copy the rows with no NA() into another columns. Something like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]01/01/01[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]01/02/13[/TD]
[TD]#NA[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]5/06/14[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]01/01/16[/TD]
[TD]#NA[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]05/09/19[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]05/3/20[/TD]
[TD]5[/TD]
[/TR]
</tbody>[/TABLE]
I should copy this data into columns D/E ignoring the rows with NA:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]01/01/01[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]5/06/14[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]05/09/19[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]05/3/20[/TD]
[TD]5[/TD]
[/TR]
</tbody>[/TABLE]
I know I can filter, deselect NA and copy and paste the values, the problem is that I need to do this hundreds of times. Is there a way to do this using only excel formulas, without using a filter, or VB code?
Thanks,
I have a table of data with numbers and some NA() values. I need to find a way to copy the rows with no NA() into another columns. Something like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]01/01/01[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]01/02/13[/TD]
[TD]#NA[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]5/06/14[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]01/01/16[/TD]
[TD]#NA[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]05/09/19[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]05/3/20[/TD]
[TD]5[/TD]
[/TR]
</tbody>[/TABLE]
I should copy this data into columns D/E ignoring the rows with NA:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]01/01/01[/TD]
[TD]10[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]5/06/14[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]05/09/19[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]05/3/20[/TD]
[TD]5[/TD]
[/TR]
</tbody>[/TABLE]
I know I can filter, deselect NA and copy and paste the values, the problem is that I need to do this hundreds of times. Is there a way to do this using only excel formulas, without using a filter, or VB code?
Thanks,