Hello Guys!
I have Datable with already filled two columns and third one empty.
I need to add data to only to one column ( third ). I was wondering how to do it with “add data row” functionality. So if would have empty datatable and tried to fill all three columns i would input “ArrayRow” as below:
{variable1, variable2, variable3}
So back to the question, if i have already filled two columns and want to fill only third one without overiding first two, how can i do this?
something like empty space separated with comma?:
{,variable3}
Also i have second small question. How can filter excel coulmn by asceding/descening values?
Once the row is already added the third column value can be set afterwards by
YourRowVa(Col3NameOrIndex) = Col3Value
As an alternate (acces via row index)
YourDataTableVar.Rows(YourRowIndex)(YourColNameOrIndex) = Col3Value