Notifications
Announcements
AddColumns( GroupBy( AddColumns( '[TEST Intake]', DecisionName, 'Current Decision Step', StatusOpen, Status = "Open" ), DecisionName, StatusOpen, Grp_Decision ), DecisionCount, CountRows(Grp_Decision) OpenCount, CountRows( Filter( Grp_Decision, StatusOpen ) ) )
It looks like you're trying to create a grouped column chart in Power Apps where:
DecisionName
StatusOpen
Your current formula has a few issues:
StatusOpen, Status = "Open"
GroupBy()
Grp_Decision
Try this formula instead:
AddColumns( GroupBy( AddColumns( '[TEST Intake]', "StatusLabel", If(Status = "Open", "Open", "Closed") // Ensuring a proper text value ), "DecisionName", "StatusLabel", "Grp_Decision" ), "DecisionCount", CountRows(Grp_Decision) )
Ensuring Status Label is Proper Text:
AddColumns('[TEST Intake]', "StatusLabel", If(Status = "Open", "Open", "Closed"))
"StatusLabel"
true/false
Grouping Correctly:
GroupBy(..., "DecisionName", "StatusLabel", "Grp_Decision")
Counting Correctly:
AddColumns(..., "DecisionCount", CountRows(Grp_Decision))
(DecisionName, StatusLabel)
This should return a table where:
Now, when used in a column chart, it should display stacked columns where each DecisionName has separate "Open" and "Closed" bars.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
In our never-ending quest to improve we are simplifying the forum hierarchy…
We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Kalathiya 421
WarrenBelz 365 Most Valuable Professional
MS.Ragavendar 339 Super User 2025 Season 2