web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Line Chart not Showing...
Power Apps
Answered

Line Chart not Showing the graph line

(0) ShareShare
ReportReport
Posted on by 492
Good day
 
I created a collection for my line chart as follows:
 
ClearCollect(CREQE_FormCollection, CREQE_Form);
ClearCollect(
   CREQE_FormWithMonthYear,
   AddColumns(
      CREQE_FormCollection,
      MonthYear,
      Text('Date of Request', "[$-en-US]yyyy-mm")
   )
);
ClearCollect(
   GroupedData,
   AddColumns(
      GroupBy(
         CREQE_FormWithMonthYear,
         MonthYear,
         GroupedItems
      ),
      MonthlyTotal,
      Sum(
         GroupedItems, 
         "SubmissionAmount"
      )
   ));
 
This syntax gives no errors except the collection table is showing [Object object] under the MonthlyTotal field and I don't think this is right.
 
I get errors if I put double quotes quotes like so: ClearCollect(CREQE_FormCollection, CREQE_Form);
ClearCollect(
   CREQE_FormWithMonthYear,
   AddColumns(
      CREQE_FormCollection,
      "MonthYear",
      Text('Date of Request', "[$-en-US]yyyy-mm")
   )
);
ClearCollect(
   GroupedData,
   AddColumns(
      GroupBy(
         CREQE_FormWithMonthYear,
         "MonthYear",
         "GroupedItems"
      ),
      "MonthlyTotal",
      Sum(
         GroupedItems, 
         Value(SubmissionAmount)
      )
   )
);
Items: GroupData
Series: MonthTotal
Label is MonthYear
 
Please help
Categories:
I have the same question (0)
  • Suggested answer
    mmbr1606 Profile Picture
    14,605 Super User 2025 Season 2 on at
    hey
     
     
    can u try this code:
    ClearCollect(
        CREQE_FormCollection, 
        CREQE_Form
    );
    
    ClearCollect(
        CREQE_FormWithMonthYear,
        AddColumns(
            CREQE_FormCollection,
            "MonthYear",
            Text('Date of Request', "[$-en-US]yyyy-mm")
        )
    );
    
    ClearCollect(
        GroupedData,
        AddColumns(
            GroupBy(
                CREQE_FormWithMonthYear,
                "MonthYear",
                "GroupedItems"
            ),
            "MonthlyTotal",
            Sum(
                GroupedItems, 
                Value('SubmissionAmount') // Ensure 'SubmissionAmount' is being read as a numeric value
            )
        )
    );
    
    if it works please mark my answer as verified,
     
     
    cheers
  • Verified answer
    NN-21081740-0 Profile Picture
    492 on at
     
    I have already tried that syntax but did not work.
     
    This is what resolved my issues: I replaced Sum(GroupedItems)with CountRows(GroupedItems).
     
    Thank you for your willingness to help.

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.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 721 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 320 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard