Database Datatable without Header

I want only data from Database, without Header
i use:

  1. Connect DB
  2. Run Queries
  3. Export it into data table
  4. And show the Message through Message box.

Where I only Need the Data, not a Header from Database
for e.g

Output From database:
Name
ABCFSLKFJ

Output I need.
ABCFSLKFJ

image

How can i only store and shows the datas , without Header?

Hi @anish.paudel ,

If you want a certain value from DT, use the following.

dt.rows(0).item("colmname").tostring

Regards,
Vinit Mhatre

1 Like

Hi @anish.paudel -
You can extract value from the datatable

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

and assign it to string variable.

1 Like

Please can you share the Flow diagram how i can achieve this.

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