Hi,
I'm having some trouble getting a formula to work for me to display a piechart the way i want.
I have a dropdown list whose OnSelect property creates a collection for me: ClearCollect(ProgressTracker, ShowColumns('Tool & Die',"TotalHours","Hours_x002d_EDM","FullName"))
I then have a piechart where i want it to display collection items based on the dropdown selected name along with summarizing the collections values - Total hours vs Required hours. The two formulas that work fine independently but i want to combine are:
If(Dropdown1_1.Selected.Value = "Carol Barry",ProgressTracker,Dropdown1_1.Selected.Value="Darry De Guzman",ProgressTracker)
AND
AddColumns(GroupBy(ProgressTracker,"TotalHours","Hours_x002d_EDM"),"Count",Sum(Hours_x002d_EDM,TotalHours))
I've tried so many different things but it will not work such as a comma, semi colon, ||, etc. Please help me out.