
Announcements
Hi Devs,
For your usual assistance,
I want to create a summary for my power apps where I can see on a column chart the summary of my transactions.
I want to see how many transactions were booked per units (I have 4 units) for the current month.
is it possible?
Thank you for your usual assistance.
Hi @nmlsanmiguel,
Could you please share the Unit column with me?
Do you want to Group by a Choice column?
Generally, if you want to count how many transactions in each unity, you could use the following formula:
AddColumns(GroupBy(AddColumns(list,"UNITText",UNIT.Value),"UNITText","UNITS2"),"Count",CountRows(UNITS2))