Hi @BrianHFASPS,
Do you want to change Fill color of all items within a Dropdown control?
I have made a test on my side, if you want to change Fill color of all items within a Dropdown control, I afraid that there is no way to achieve your needs in PowerApps currently (could only specify Fill color the selected item).
As an alternative solution, I think the Gallery control could achieve your needs. On your side, you could consider take a try to list your SQL View records using Gallery control instead of Dropdown control.
I have made a test on my side, please take a try with the following workaround:
Set the TemplateFill property of the Gallery to following:
If(
ThisItem.Dept = "PowerApps", RGBA( 127, 255, 212, 1 ),
ThisItem.Dept = "Power BI", RGBA( 165, 42, 42, 1 ),
RGBA( 222, 184, 135, 1 )
)
On your side, please take a try with the following workaround:
Set the Items proeprty of the Gallery to following:
Sort(
Filter('[dbo].[Activity View]', Trimester = 'Attendance Trimester Dropdown Roster'.Selected.Trimester),
'Activity Name',
Ascending
)
Set the TemplateFill property of the Gallery to following:
If(
LookUp('[dbo].[Activities]', ActivityID = ThisItem.ActivityID,'AttTakenDate String') = Text(Today(),"[$-en-US]yyyy-mm-dd"),
Color.GreenYellow,
Color.White
)
Best regards,