How to get the status

hi

i have got datatable and that will only have one header and one row of data now i want only to check one status from that .

PROCESS_STATUS with that value
sample.xlsx (8.3 KB)

can you help on this

Hi,

How about the following?

dt.Rows(0)("PROCESS_STATUS").ToString()

image

Sample
Sample20240624-4.zip (8.6 KB)

Regards,

1 Like

@mint
you need one value means call index vice

HI @mint

Please check the below flow using linq query:

dt_Input.AsEnumerable().Select(Function(X) X("PROCESS_STATUS").ToString).First()

Regards

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