Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X
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
Solved! Go to Solution.
Try varm=myInfotablename.rows[RowNumber].Fieldname
Try varm=myInfotablename.rows[RowNumber].Fieldname
Thanks a lot. It worked