Hello,
I am attempting to create a column chart to reflect the total of each status, and grand total, of items. My "Status" column contains the following choices: "New", "In Progress", "Complete", "Closed", and "Suspended". I have attempted several different functions based on research of this topic (I am NOT experienced whatsoever!). My last attempt at a solution before this post was to build a collection in the app.OnStart as follows:
ClearCollect(
colStatusTotal,
Sum(
If(Item.Value in 'G4 Task Tracker List'.Status.Value ="New",Value("1"),Value("0")),
If('G4 Task Tracker List'.Status.Value="In Progress",Value("1"),Value("0")),
If('G4 Task Tracker List'.Status.Value="Complete",Value("1"),Value("0")),
If('G4 Task Tracker List'.Status.Value="Closed",Value("1"),Value("0")),
If('G4 Task Tracker List'.Status.Value="Suspended",Value("1"),Value("0"))))
However, I receive an error for "Item.Value", all ".Value" entries, and all "=" entries.
The first "If" statement is different because I attempted a different entry, which still reflects the same errors.
Any recommendations for building a chart, or assistance with my current progress would be greatly appreciated.
Thanks!