Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Suggested answer

How to call sharepoint list data inside a component in power apps

(0) ShareShare
ReportReport
Posted on by 2
 I have a callendar component in power apps, and a table as input that i initialize with the schema like this 
Table(
    {
        Title: "title",
        Status: {Value: "Not Started"},
        EventDate: DateValue("7/02/2025"),
        NbOfEmployees: 1
    }
)
and when i call that calendar in the screen view i give the sharepoint list, and i use this filter to make visible the circle for my scheduled event? 
CountRows(Filter([@Calendar].LunchData, EventDate = DateAdd(_firstDayInView,ThisItem.Value, TimeUnit.Days))) > 0
it is not working
could anyone help me with that please? thanks
  • Suggested answer
    Vahid Ghafarpour Profile Picture
    167 on at
    How to call sharepoint list data inside a component in power apps
    I think by any reason they are not match, maybe the EventDate return datetime.
    Did you try to cast them?
    like this
     
    CountRows(
        Filter(
            [@Calendar].LunchData,
            Text(EventDate, "[$-en-US]yyyy-mm-dd") = Text(DateAdd(_firstDayInView, ThisItem.Value, TimeUnit.Days), "[$-en-US]yyyy-mm-dd")
        )
    ) > 0

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

Michael Gernaey – Community Spotlight

We are honored to recognize Michael Gernaey as our June 2025 Community…

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 770 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 494

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 399