Choose from list of images to use as thumbnail from Enum List

I have a number of photos that all reference the same item in another table.
I would like to select one of those photos to assign as the items thumbnail image.

I was able to do this in the Items form as a Enum column of a base type of Thumbnail
I then put in this expression in the โ€œValid ifโ€ formula

SELECT(Photos[Image], [Collection_ID]=[_THISROW].[ID], TRUE)

It works great but if I go back into the Items form to edit, the Enum for the Thumbnail shows me a โ€œThis Entry Is Invalidโ€ error.

It is still working but Iโ€™d like to know if maybe there was a better way for me to accomplish this or fiix this valid error.

Thanks all

Solved Solved
0 6 1,478
1 ACCEPTED SOLUTION

Do you have a โ€œRelatedโ€ฆโ€ ref_rows() column in the items table that shows a list of photos that reference that item?

Maybe try to simplify the expression to:

[Relatedโ€ฆ][Image]

Also try to move the expression from valid_if to Suggested Values.

View solution in original post

6 REPLIES 6

Do you have a โ€œRelatedโ€ฆโ€ ref_rows() column in the items table that shows a list of photos that reference that item?

Maybe try to simplify the expression to:

[Relatedโ€ฆ][Image]

Also try to move the expression from valid_if to Suggested Values.

@Marc_Dillon Thanks so much!
Yes I did have โ€œRelatedโ€ฆโ€ ref_rows() column, didnโ€™t know it was that easy to get those values like that.

I removed my old the formula from the โ€œValid Ifโ€ field.
Then used the following formula in the โ€œSuggested Valuesโ€ field

[Related Photos][Image]

I did have to change my column type from Enum to Thumbnail.
But now it works great

Thanks again

Do you still get a dropdown selection that way?
Did you try to change the โ€œBase Typeโ€ of the Enum column to Thumbnail?

Whoa.
Setting a Suggested Value expression does give a dropdown on a non-Enum field.
I didnโ€™t knowโ€ฆ

Yeah, I was happily surprised too

Yeah, I still got a dropdown selection even though my Base Type was no longer Enum by Thumbnail.

Top Labels in this Space