Hello,
I have a couple labels that I want to show the total SharePoint list count based on the Gallery being filtered by the Branch dropdown. Branch is of course the Office Location.
So basically I have a button that when pressed shows stats (In a label) for the current branch chosen from the dropdown.
Total items created (not sure about the rest)
If(BranchStatsButton2,CountRows(Filter(AllBranches,BranchDropdown.Selected.Value,
Total Completed (Status field) based on chosen branch. (Not producing required results)
If(
BranchStatsButton2,
CountRows(
Filter(
AllBranches,BranchDropdown.Selected.Value,
Status.Value = "Completed"
)
Any help would be much appreciated.
Thanks in advance.