Hi @Mattw112IG ,
Could you please share a bit more about your data source (Collection1, Collection2, Collection3)? Are they all SP Lists?
Could you please show more details about the "Status" column in your Collection3? Is it a Choice type column?
I have made a test on my side, please consider take a try with the following workaround:
Set the Items property of the first Gallery to following:
Collection1
Add two Labels within this Gallery, set the Text property of Label1 to following:
ThisItem.Name.DisplayName
set the Text property of Label2 to following:
"#Open Number: " & CountRows(
Filter(
Collection3,
COL2ID in Filter(Collection2,NAME.DisplayName = ThisItem.NAME.DisplayName).COL2ID,
Status.Value = "Open"
)
)
Note: I assume that the Status column in your Collection3 (SP List) is a Choice type column.
If the Status column in your Collection3 is a Text type column, please modify above formula as below:
"#Open Number: " & CountRows(
Filter(
Collection3,
COL2ID in Filter(Collection2, NAME.DisplayName = ThisItem.NAME.DisplayName).COL2ID,
Status = "Open"
)
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,