Micro Focus QTP (UFT) Forums

Full Version: Saving value in datatable to variable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

How can we get a value of data table to a variable

Regards,
Anbarasu
You can use 'Datatable' method to get the value from datatable

Your variable = Datatable(Column,sheet)
e.g.
Code:
Dim Val1
Val1= DataTable("Value" , dtLocalSheet)
Thanks its working