get row number of value contain in a column without select row
Hi all,
I want to get the row number of a value (for example : "Value_A") that might be contained in a column (called "Column_A") without using the following code :
rmat = dt << get rows where( Contains( Column( dt, "Column_A" )[], "Value_A" ) );
Try( row_number_wanted = rmat[1] );
I don't want to use such code because it takes too much time when a lot of values in a big datatable need to b...