Hi everyone!
I am building a form in power apps using data that comes from power bi and a sharepoint excel file.
Basically, in power bi I have the following fields:
- Device id (can have multiple part ids)
- Part id (some devices share the same parts)
- Final id (concatenate of deviceid-partid) -> This is the unique identifier
- Store name
I have a gallery where the item is: GroupBy(PowerBIIntegration.Data, "device_reference", "Grouped1") and a subgallery set to: ThisItem.Grouped1
This second gallery has an arrow button that navigates to the form.
I have an issue setting the form item. I am trying to pass:
LookUp(formcomments, id = Gallery1.Selected.Gallery2.Selected.id_final)
But it doesn't seem to be working.
I also want to pass the device, part and store info to the form automatically, but it's only working for the device:
-Device datacard default set to: Gallery1.Selected.device_reference and it's retrieving the id correctly
-Part datacard default: Gallery1.Selected.Gallery2.Selected.part_id it's returning a blank
-Store name datacard default: Gallery1.Selected.Gallery2.Selected.store it's returning a blank
Any help will be greatly appreciated!