0
Views
2
Comments
Using a Table or Query as an array
Question
Given a Query List or a Table, is there a way to reference each row directly in an Action? For example: QueryList(n), where n is the row I wish to use.

Phil
2016-04-22 00-29-45
Nuno Reis
 
MVP
Yes, List[n].

A query can return several entities at once. To get the n from GetEntity1, use the expression Query.List[n].Entity1 that returns a Record of type Entity1.
UserImage.jpg
Phil Gieseke
Thanks. Got it.
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.