I want to show all attachments (pictures) from every record in a sharepoint list.
The records could have no or one or more attachments.
I want to show all attached pictures in a gallery image control.
I tried to ungroup the Attachment-Column, PowerApps shows the correct column names but the table is empty.
Is there a way to get all attachments in one table?

ClearCollect(
col_TestUngroup,
Ungroup(
ShowColumns(
Filter(Fieldcheck_Data, Title = "DE00004915"),
"{Attachments}"
),
"{Attachments}"
)
)
