Re: Processing Bar or Slides (Modern)
@Pstork1, so far, I did added four image and different sliders is worked. Also, I want to make a based on colors what I had and let me show you.

I want to make a colors based on their match in datasource. 🙂 see below.
Switch(
LookUp('DHS Student Users Medallion', 'Student Name' = User().FullName).'Medallion Status'.Value,
"Blue Medallion", RGBA(36, 60, 145, 1),
"Bronze Medallion", RGBA(150, 75, 0, 1),
"Silver Medallion", RGBA(116, 117, 120, 1),
"Gold Medallion", RGBA(212, 166, 0, 1),
"Platinum Medallion", RGBA(96, 78, 137, 1), // Assuming 604E89 is a hexadecimal color
"Diamond Medallion", RGBA(65, 118, 156, 1),
RGBA(36, 60, 145, 1)
)