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 / How to show all the pe...
Power Apps
Answered

How to show all the people who's birthday is today in my app ?

(0) ShareShare
ReportReport
Posted on by 1,066

Dear Community,

 

In my app i want to show all the people who's birthday is today.

In my app i have a gallery with a seachbox. I want to add a button

to show all the people who's birthday is today.

 

What is the code for the button if i want to search in the column "Geboortedatum" 

where the date has the format "dd-MM-yyyy". on today's date i guess i need the code NOW()

 

And what should the code in the Gallery be:

 

If(
Len(searchQuery) > 0;
SortByColumns(
Search(
dbEmployeeDirectory;
searchQuery;
"crcfa_voornaam";
"crcfa_achternaam";
"crcfa_afdeling";
"crcfa_titel";
"crcfa_computer";
"crcfa_badgenummer";
"crcfa_gebruikersid";
"crcfa_geboortedatum"
);
"crcfa_achternaam";
SortOrder.Ascending
)
)

 

Gr. P

 

 

 

Categories:
  • Verified answer
    WarrenBelz Profile Picture
    156,528 Most Valuable Professional on at

    Hi @PeKi72 ,

    You would need something like this

    If( 
     Len(searchQuery) > 0;
     SortByColumns(
     Search(
     Filter(
     AddColumns(
     dbEmployeeDirectory;
     "GDatum";
     Text(Geboortedatum,"ddmm")
     );			 
     GDatum = Text(Today,"ddmm")
     );
     searchQuery;
     "crcfa_voornaam";
     "crcfa_achternaam";
     "crcfa_afdeling";
     "crcfa_titel";
     "crcfa_computer";
     "crcfa_badgenummer";
     "crcfa_gebruikersid";
     "crcfa_geboortedatum"
     );
     "crcfa_achternaam";
     SortOrder.Ascending
     )
    )

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    MVP (Business Applications)   Visit my blog Practical Power Apps

     

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 395 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 328

#3
WarrenBelz Profile Picture

WarrenBelz 260 Most Valuable Professional

Last 30 days Overall leaderboard