Hi, I am new PowerApps. I need your help. I want to build a chart to show number of associates joined on each year. In excel table, I have date of join field. I am using following query, but it is not giving me desire result (in fact showing some error - The GroupBy is having invalid argument. Expecting number, but having text value). Can you please help me by pointing out where I am doing wrong?
AddColumns(
GroupBy(
hctable,
Year(DateValue(Date_of_Join_Org)),
"joindate"
),
"Countofassociates",
CountRows(joindate)
)
Here, hctable is the table name, Date_of_Join_Org is the field having various dates in mm/dd/yyyy format.
Solved! Go to Solution.
When I want the data to show in a chart I put it in a collection and then set that collection for the items of the chart.
Screens OnVisible:
ClearCollect(CollYearCount,
AddColumns(GroupBy(AddColumns(hctable, "Year", Year(Date_of_Join_Org)),"Year","GrpByYear")
,"CountYear",CountRows(GrpByYear)))
So you put that on the screens OnVisible (then click to another screen and back so it is created) and then you can put in your chart and set the Items of it to CollYearCount.
Try this:
For your Gallery Items:
GroupBy(AddColumns(hctable, "Year", Year(Date_of_Join_Org)),"Year","GrpByYear")
Then in your gallery you can have a label that is : ThisItem.Year (if you want)
From there you can refer it it...example:
Label = CountIf(hctable, Year(Date_of_Join_Org)=ThisItem.Year)
I use sharepoint so it does not need the DateValue() part, not sure if you do for excel.
When I want the data to show in a chart I put it in a collection and then set that collection for the items of the chart.
Screens OnVisible:
ClearCollect(CollYearCount,
AddColumns(GroupBy(AddColumns(hctable, "Year", Year(Date_of_Join_Org)),"Year","GrpByYear")
,"CountYear",CountRows(GrpByYear)))
So you put that on the screens OnVisible (then click to another screen and back so it is created) and then you can put in your chart and set the Items of it to CollYearCount.
Thanks for the help. It really worked
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
186 | |
53 | |
41 | |
36 | |
30 |
User | Count |
---|---|
240 | |
75 | |
71 | |
69 | |
65 |