Hello,
I have created an app in which I obtain a "CountRows" result from an excel table in which I use several filters (chosen from several dropdowns). The filter works OK, and I can get the "CountRows" in a label (as you can see in the attached screenshot (the upper right label that marks "4")). My question is... Can I send this result to a chart in which these result appears as a column? Can these results appear grouped by different column headers (which are the dropdown columns that are loaded in the dropdowns).
If it helps, this is the formula I am using for the filters (this works OK):
CountRows(Filter(DatosIniciativas;(IsBlank(DropTipoIni.Selected.Result) ||'Tipo Revisado'=DropTipoIni.Selected.Result) &&
(IsBlank(DropSector.Selected.Result) || 'Sector objetivo'=DropSector.Selected.Result) &&
(IsBlank(DropTipoBenef.Selected.Result) || Beneficiarios=DropTipoBenef.Selected.Result) &&
(IsBlank(DropDepart.Selected.Result) || Departamento=DropDepart.Selected.Result) &&
(IsBlank(DropVicecons.Selected.Result) || ViceconsejerÃa=DropVicecons.Selected.Result)))
Thanks in advance, power apps community!!!