Skip to main content
1-Visitor
June 27, 2017
Solved

How to assign a single cell element of an infotable to an independent variable?

  • June 27, 2017
  • 1 reply
  • 2048 views

Hi all,

               I have a requirement such that I need to extract one particular cell value from the infotable data I have already tried this

var m= myInfotablename.Fieldname.getRow(rowIndex);

var result=m;

But as the element that I want to extract is of date time base type I have given output as datetime.

It's showing the above mentioned error where data is the name of my InfoTable and "Thu Mar 02 2017 06:13:15 GMT-0500(EST)" is the first row element that I wanted to assign to variable "m".

Please help on this

Best answer by posipova

Try varm=myInfotablename.rows[RowNumber].Fieldname

1 reply

posipova20-TurquoiseAnswer
20-Turquoise
June 27, 2017

Try varm=myInfotablename.rows[RowNumber].Fieldname

vsrilekha1-VisitorAuthor
1-Visitor
June 28, 2017

Thanks a lot. It worked