I want only data from Database, without Header
i use:
- Connect DB
- Run Queries
- Export it into data table
- 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
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.
system
(system)
Closed
5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.