Hi @the_colbs ,
Do you want to display individual Cards as multiple items within the Gallery rather than display multiple cards within single one Gallery Item?
I have made a test on my side, please take a try with the following workaround:
Set the Items property of the Gallery to following formula:
Filter(
Split(
Concat(
Filter('SharePoint List Name', Email = User().Email),
If(!IsBlank('Card 1'), 'Card 1', Blank()) & "," &
If(!IsBlank('Card 2'), 'Card 2', Blank()) & "," &
If(!IsBlank('Card 3'), 'Card 3', Blank()) & "," &
If(!IsBlank('Card 4'), 'Card 4', Blank()) & "," &
If(!IsBlank('Card 5'), 'Card 5', Blank()) & "," &
If(!IsBlank('Card 6'), 'Card 6', Blank()) & "," &
If(!IsBlank('Card 7'), 'Card 7', Blank()) & ","
),
","
),
!IsBlank(Result)
)
Then within your Gallery, add single one Label, set the Text property to following:
ThisItem.Result
Please take a try with above solution, check if the issue is solved.
Best regards,