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

Community site session details

Session Id : F9fSNyCo3mnG+w7Euy3v4n
Power Apps - Building Power Apps
Unanswered

Same Fill color for same date in a gallery

Like (0) ShareShare
ReportReport
Posted on 20 Jul 2023 10:50:00 by 4

Hi team,
I have a gallery in which I display daily manual records based on the date. I had written a code to make alternate rows of the same color eg: Light orange and dark orange. But now I want that all daily manual records of one date should be in one color and another date in another color. (only two colors allowed. eg: all record for 15th will be with template fill light orange and all records for 16th should be in dark orange and all records of 17th in light orange). How can I achieve this?

Categories:
I have the same question (0)
  • madlad Profile Picture
    2,637 Moderator on 20 Jul 2023 at 12:18:52
    Re: Same Fill color for same date in a gallery

    You should be able to use something similar to this:

    If(
     ThisItem.*Date* = Last(Distinct(*YourDataSource*, *Date*)).Value, 
     Color.Green, 
     ThisItem.*Date* = First(Distinct(*YourDataSource*, *Date*)).Value, 
     Color.Red,
     Color.White
    )

    This checks for the first and last distinct date values, and bases its coloring off of that. As a default I put white in if neither matches. Just make sure to swap in your appropriate values.

     

    Hope this helps!

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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Telen Wang – Community Spotlight

We are honored to recognize Telen Wang as our August 2025 Community…

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 637 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 570 Super User 2025 Season 2

#3
Power Apps 1919 Profile Picture

Power Apps 1919 473

Loading started