So I have 3 drop down lists showing
1) Owner : DropNames
2) Sites : DropSites
3) Technology:DropTech
I have 1st button applied this formula of SUM TOTAL HEADS
Sum(If(IsBlank(DropNames.Selected.Value) || IsBlank(DropSites.Selected.Value) || IsBlank(DropTech.Selected.Value),Sum(Prod,TotalHeads)),Sum(Filter(Prod,Owner.DisplayName = DropNames.Selected.Value,Site = DropSites.Selected.Value,Tech=DropTech.Selected.Value),TotalHeads))
I want to apply same formula for 2nd button which already has following formula
CountIf(Prod,Status="G0")
How I can apply COUNT formula on my 2nd button using same logic as used in first button