I have a Sharepoint list with a Choice column "FF_Test" that has 4 values in it (Value1, Value2, Value3, Value4)
In PowerApps Media Library i have four images (Value1, Value2, Value3, Value4)
I am trying to create a form where the values from the Choice Column appear with the corresponding images
I have tried to create OnStart a collection using:
ClearCollect(colTest, AddColumns(Choices(Test.FF_Test), "Selected", false, "Image", Value));
...and display it in the gallery using ThisItem.Value or Text(ThisItem.Value) for the Image but it is still blank and doesn't display anything.
Any help or direction is greatly appreciated