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

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Show this months input...
Power Apps
Unanswered

Show this months inputs in graph

(0) ShareShare
ReportReport
Posted on by 42

Hi,

 

I'm trying to display the current months inputs but also keep the graph in its same format. I would like this graph to only display this months info not all the info that is has. For example, the graph would display Octobers input in October and so on. The pictures below shows what I have so far.

sean8397_0-1697840754684.png

 

sean8397_1-1697840754676.png

 

 

Any help would be much appreciated. Thank you!

Categories:
I have the same question (0)
  • v-bofeng-msft Profile Picture
    Microsoft Employee on at

    Hi @sean8397 ,

     

    Could please show me the formula?(The image of the formula you provided is too blurry to see clearly)

     

    Best Regards,

    Bof

  • sean8397 Profile Picture
    42 on at

    Sorry about that, attached is the formula below:

     

    ForAll(Choices('Tool Room'.Request) As A,{Number:CountIf(ForAll('Tool Room',ThisRecord.Request.Value) As B,B.Value=A.Value),Value:A.Value})

  • v-bofeng-msft Profile Picture
    Microsoft Employee on at

    Hi @sean8397 ,

     

    Please try:

    ForAll(
     Choices('Tool Room'.Request) As A,
    	{
    	 Number:CountRows('Tool Room',ThisRecord.Request.Value=A.Value && MonthColumn=10)
    	}
    )

     

    Best Regards,

    Bof

  • sean8397 Profile Picture
    42 on at

    These are the errors I received, please let me know what you think. Thank you!

    sean8397_0-1698436496971.png

    Screenshot 7.png

  • sgtsnacks64 Profile Picture
    322 Super User 2024 Season 1 on at

    Hi @sean8397 ,

     

    Depending on the Data source, you may be able to take a different approach:

     

    ForAll(
     GroupBy(
     Data,
     "Request",
     "Data"
     ),
     {
     Request: ThisRecord.Request,
     Number: CountRows(
     Filter(
     Data,
     ThisRecord.'CreatedOn' >= Date(
     Year(Today()),
     Month(Today()),
     1
     ) && ThisRecord.'CreatedOn' < DateAdd(
     Date(
     Year(Today()),
     Month(Today()),
     1
     ),
     1,
     TimeUnit.Months
     )
     )
     )
     }
     )

     You'll need to change some of the field names to fit your data source,


    Data: Your Data source name

    CreatedOn: The equivalent Date field in your data source

    Request: The Request field in your data source

    What we're doing essentially creating a new table with requests against a count of the records with that request. We're filtering our requests to be from the 1st of the current month to the end of the month.

  • sean8397 Profile Picture
    42 on at

    Hi,

    These are the errors I'm getting:

     

    sean8397_0-1699403974736.png

    Screenshot 10.png

     

    Thank you!

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 490

#2
WarrenBelz Profile Picture

WarrenBelz 427 Most Valuable Professional

#3
Vish WR Profile Picture

Vish WR 381

Last 30 days Overall leaderboard