Read data from datatable

Hi ,

I have B3 to B6 columns in excel which I am reading via read range in datatable. Now I have to store these all 4 value in different variable. How to acheive the same.

image

GetValues.xaml (5.3 KB) Sample File - Copy.xlsx (44.6 KB)

Please try this…!

Thanks!

1 Like

Assign:
Var1=DT1.Row(0)(0)
Var2=DT1.Row(1)(0)
Var3=DT1.Row(2)(0)
Var4=DT1.Row(3)(0)

1 Like

*rows right

ya rows . :sweat_smile:

1 Like