Hello,
I have a label in a gallery where I want it to show the total number of items in a SharePoint list based on a text field.
The label is on a gallery named "galTopics" and I wish is to lookup the number of items in the gallery named "galSubtopic".
The Items property of "galTopics" is set to:
Filter(TopicsClaims,Building = galDocData.Selected.spBuilding)
The Items property of "galSubtopic" is set to:
Filter(SubtopicArgEvi_1, Building = TopicBuildingValue.Text && Topic = TopicDD.Selected.Value)
So for the label on "galTopics" I want to show the number of Subtopics in "galSubtopic" with the same Topic value that is in "galTopic".
I've tried this but no luck:
CountRows(
Filter(
SubtopicArgEvi_1,
Topic = galTopics.Selected.Topic))
Any suggestions?