@WarrenBelz Hello, Just to be clear I have the following being filtered in the gallery right now. The SharePoint list in in a collection.
I do have multiple values from a "Status" field in addition to the total count the created user has created. So I would need to get these total counts (for the year) for the other values.
Status filed values:
Unopened
Validating
Completed
What would be the best way to incorporate that into my formula?
Sort(Filter(Search(AddColumns(Branch1, "CreateBy", 'Created By'.DisplayName), SearchBar.Text, "Title", "CompanyName", "CustomerContact", "Tag_x0023_", "CreateBy"),If(StatusDropdown.Selected.Value="All",true,Status.Value=StatusDropdown.Selected.Value),If(DispostionDropdown.Selected.Value="All",true, Disposition.Value=DispostionDropdown.Selected.Value),If(RushOTCheckbox.Value=true,'Rush Overtime',RushOTCheckbox.Value= false ),If(QuoteReqdCheckbox.Value=true,'Quote Req''d',QuoteReqdCheckbox.Value= false )),Created,Descending)
Thanks again.