Hello!
Newbie here. (Like 5 days old kinnda newbie) I'm trying to display an image from my sharepoint based on 2 dropdown criteria.
grp_drp = Row
stn_drp = Column
the whole area at right is the image control

I have my sharepoint list: I tried using both image and links (Images are in my sharepoint site document folder)

The Sharepoint Site accessibility setting is shared to everyone including, its files, and folders. So does the App
With hyperlinks, the app works on my end but when I share it with everyone else, the Images won't appear.
Here the code for the image control:
If(
grp_drp.Selected.Value = "Bins",
LookUp(
'6S Image Gallery',
Title = stn_drp.Selected.Value
).Bins,
If(
grp_drp.Selected.Value = "Tools",
LookUp(
'6S Image Gallery',
Title = stn_drp.Selected.Value
).Tools,
LookUp(
'6S Image Gallery',
Title = stn_drp.Selected.Value
).Equipment
)
)
With Images, Only the first row images appears on both my end and other users and it takes a bit to load.
This is my code:
If(
grp_drp.Selected.Value = "Bins",
LookUp(
'6S Image Gallery',
Title = stn_drp.Selected.Value
).Bins2.Full,
If(
grp_drp.Selected.Value = "Tools",
LookUp(
'6S Image Gallery',
Title = stn_drp.Selected.Value
).Tools2.Full,
LookUp(
'6S Image Gallery',
Title = stn_drp.Selected.Value
).Equipment2.Full
)
)
I am aware that my coding is as raw as fresh salmon but this is at the moment my current level of understanding with powerapps. I am looking forward to learning more.
Thanks!