Sorting error!

sort%20error%201

hello guys, i’m getting this error while trying to sort base on count. it works perfectly fine without sort, why am i getting this error ?

sort%20error%204
sort%20error%202
sort%20error%203

1 Like

i tried using IPAttTable.Columns(Count) , but it shows this
sort%20error%205

Hello @RobertoEwaldo,
remove column property, and add Name property as “Count”.

i also tried this, but it shows the same, column name invalid etc
sort%20error%206

use IPAttTable.Columns(Count-2)

Try This
image

it works bro, thank you !! Can you please explain why use Count-2 ?

your second reply shows that column 3 not exist.
so, your count variable hold value 3.
based on your Data table “Count” column index is 1.
count - 2 will point to “Count” column

I don’t know how you got count value as 3. if used like this,
count = IPAttTable.Columns.count
count will hold 2

if i make new sequence and input data to datatable manually like yours, it worked. but when i try it with my work (datatable from read sheet excel) it didn’t work (column is not set or invalid)

sort%20error%207

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.