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
Solved! Go to Solution.
You can skip the overhead of the collection and just set your Items property of the Gallery to:
Table(
{
Item: "Test1",
Image: Image1,
TargetScreen: Screen2
},
{
Item: "Test2",
Image: Image2,
TargetScreen: Screen3
}
)
Don't quote your controls/items in the record.
I hope this is helpful for you.
You can skip the overhead of the collection and just set your Items property of the Gallery to:
Table(
{
Item: "Test1",
Image: Image1,
TargetScreen: Screen2
},
{
Item: "Test2",
Image: Image2,
TargetScreen: Screen3
}
)
Don't quote your controls/items in the record.
I hope this is helpful for you.
Thank you Randy!
This worked great! This is actually what I needed. Much easier process.
Very good! Yes, number one rule in PowerApps - Keep it super simple!!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
190 | |
57 | |
43 | |
36 | |
34 |
User | Count |
---|---|
270 | |
78 | |
75 | |
74 | |
67 |