B Bruce A. Julseth Jan 30, 2005 #1 I have a dataset that I want to remove the first column. Can I do this without "Select"ing again? If so, how. Thanks....
I have a dataset that I want to remove the first column. Can I do this without "Select"ing again? If so, how. Thanks....
C Cor Ligthert Jan 30, 2005 #2 Bruce, A dataset has no columns. A datatable has that and removing a column from the first of that is Datatable.datatable(0).columns.remove(0) I hope this helps? Cor
Bruce, A dataset has no columns. A datatable has that and removing a column from the first of that is Datatable.datatable(0).columns.remove(0) I hope this helps? Cor
B Bruce A. Julseth Jan 30, 2005 #3 Cor Ligthert said: Bruce, A dataset has no columns. A datatable has that and removing a column from the first of that is Datatable.datatable(0).columns.remove(0) I hope this helps? Cor Click to expand... Cor: Works like a charm.. Thanks...... Bruce
Cor Ligthert said: Bruce, A dataset has no columns. A datatable has that and removing a column from the first of that is Datatable.datatable(0).columns.remove(0) I hope this helps? Cor Click to expand... Cor: Works like a charm.. Thanks...... Bruce