简体   繁体   中英

How can I reference an item within recordholder in Power Apps?

I joined two collections and the result comprises columns type text and 1 column with type recordholder as the image shows. enter image description here . If I open this record holder I can see the column that I am interested in that is called Proyecto: enter image description here , but I don't know how to access to this particular field. I tried ThisItem.recordHolder, Thisitem.recordHolder.proyecto, Thisitem.recordholder[@proyecto] but none of them work.

Thank you for your help

In PowerApps fields in nested or resulting tables can be referenced like:

ThisItem.recordHolder.Value.proyecto

or

Thisitem.recordHolder.Result.proyecto

I solved it using the ungroup() function. I couldn't reference the elements inside Recordholder by using '.' neither '[]'. Ungroup() is the solution to expand the table and then you can call any element inside using the traditional way.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM