How can I see only specific photos in the list?

Hi community members,

In my app, I want to see the list of Photos which are only started with 111111 or 111113 number, therefore only specific photos under the same item.

  • I am adding screenshots.
    I have two tables, Product and Photos. I have added column screenshots also.
    Is it possible? Please help me to solve it.

@abirtanjinadnan
Isn’t this same as here and solved as well?

[How can I insert an "ADD" button beside Photo attribute?](https://community.appsheet.com/t/how-can-i-insert-an-add-button-beside-photo-attribute/34325) Questions

Hi all, I want to add an “ADD” button beside the “Photo” entity (screenshot-1) which will be able to take 1 to 7 (multiple) pictures and the pictures will view in the one after another like a Grid view. How can I do this? Kindly help. (Details in the screenshot) Thanks [Screenshot_206]

No sir.

Actually, the idea is to select any one photo from Product Photos (7 photos) as a Selected photo attribute in main Product table.
A retail box has several sides, which will be added in that 7 photos.

And the selected photo attribute is reserved for labelled part (name, price, expire date etc.) from those 7 photos.

In the Product table, I had set it as a reverse reference, so I believe you have changed it.

Yes. I have just added selected photos column.
without it, I changed nothing.

You can use below expression in Valid_if

SELECT(
    Photos[_ComputedKey],
    [Product] = [_THISROW].[Item Code]
)

2 Likes

It worked
Thank you so much.

1 Like

You’re welcome, my pleasure

1 Like