Hello Powerapps family,
I have the following Table:
ClearCollect(
ccNetwork,
{
Item: "Test1",
Image: "Image1",
TargetScreen: "Screen2"
},
{ Item: "Test2",
Image: "Image2",
TargetScreen: "Screen3"
}
);
The images I want to use are going to come from the PowerApps Media Images.
So, Gallery1 for the Title: In the Text properly: ThisItem.Item ( and this works great since my gallery1 datasource is pointed to ccNetwork.
The problem I am having is I cannot get the images listed in my table to display in my gallery. Is this possible to get different images listed in my table to display in my gallery?
Thank you