Hi,
I am creating a spreadsheet with several values (one Text value in each cell) i.e.
[TABLE="class: grid, width: 150, align: left"]
<tbody>[TR]
[TD]Row1[/TD]
[TD]Col. A[/TD]
[TD]Col. B[/TD]
[TD]Col. C[/TD]
[TD]Col. D[/TD]
[TD]Col. E (The Result)[/TD]
[/TR]
[TR]
[TD]Row2[/TD]
[TD]Apple[/TD]
[TD]Banana[/TD]
[TD]NA[/TD]
[TD]Pumpkin[/TD]
[TD]NA[/TD]
[/TR]
[TR]
[TD]Row3[/TD]
[TD]Cherry[/TD]
[TD]Apple[/TD]
[TD]Mango[/TD]
[TD]Pineapple[/TD]
[TD]NA[/TD]
[/TR]
[TR]
[TD]Row4[/TD]
[TD]Apple[/TD]
[TD]Banana[/TD]
[TD]NA[/TD]
[TD]Pumpkin[/TD]
[TD]Apple[/TD]
[/TR]
</tbody>[/TABLE]
I wish to get the result in Column F as follows:
[TABLE="class: grid, width: 300, align: left"]
<tbody>[TR]
[TD]Row1[/TD]
[TD]Column F[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Row2[/TD]
[TD]Apple Banana Pumpkin[/TD]
[TD](Without the text “NA”)[/TD]
[/TR]
[TR]
[TD]Row3[/TD]
[TD]Cherry Apple Mango Pineapple[/TD]
[TD](Without the text “NA”)[/TD]
[/TR]
[TR]
[TD]Row4[/TD]
[TD]Apple Banana Pumpkin[/TD]
[TD](Without the text “NA” and Ignoring the Double Value “Apple”)[/TD]
[/TR]
</tbody>[/TABLE]
I Tried Using following command but it displays all the five values presented in each cell.
=A2&" "&B2&" "&C2&" "&D2&" "&E2
Is there any way by which I can Ignore the specified word “NA” which may be presented in any of the cell
(A2 B2 C2 D2 E2) along with the duplicate value “Apple” (that may be presented in any of the rows) Ignored?
Please Help!
I am creating a spreadsheet with several values (one Text value in each cell) i.e.
[TABLE="class: grid, width: 150, align: left"]
<tbody>[TR]
[TD]Row1[/TD]
[TD]Col. A[/TD]
[TD]Col. B[/TD]
[TD]Col. C[/TD]
[TD]Col. D[/TD]
[TD]Col. E (The Result)[/TD]
[/TR]
[TR]
[TD]Row2[/TD]
[TD]Apple[/TD]
[TD]Banana[/TD]
[TD]NA[/TD]
[TD]Pumpkin[/TD]
[TD]NA[/TD]
[/TR]
[TR]
[TD]Row3[/TD]
[TD]Cherry[/TD]
[TD]Apple[/TD]
[TD]Mango[/TD]
[TD]Pineapple[/TD]
[TD]NA[/TD]
[/TR]
[TR]
[TD]Row4[/TD]
[TD]Apple[/TD]
[TD]Banana[/TD]
[TD]NA[/TD]
[TD]Pumpkin[/TD]
[TD]Apple[/TD]
[/TR]
</tbody>[/TABLE]
I wish to get the result in Column F as follows:
[TABLE="class: grid, width: 300, align: left"]
<tbody>[TR]
[TD]Row1[/TD]
[TD]Column F[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Row2[/TD]
[TD]Apple Banana Pumpkin[/TD]
[TD](Without the text “NA”)[/TD]
[/TR]
[TR]
[TD]Row3[/TD]
[TD]Cherry Apple Mango Pineapple[/TD]
[TD](Without the text “NA”)[/TD]
[/TR]
[TR]
[TD]Row4[/TD]
[TD]Apple Banana Pumpkin[/TD]
[TD](Without the text “NA” and Ignoring the Double Value “Apple”)[/TD]
[/TR]
</tbody>[/TABLE]
I Tried Using following command but it displays all the five values presented in each cell.
=A2&" "&B2&" "&C2&" "&D2&" "&E2
Is there any way by which I can Ignore the specified word “NA” which may be presented in any of the cell
(A2 B2 C2 D2 E2) along with the duplicate value “Apple” (that may be presented in any of the rows) Ignored?
Please Help!