Hello,
I am trying to incorporate "Work Location" into a seating chart app that I built previously. My thought was to dynamically change the user label color based on the user's work location for the current day (ie: HQ = Green, WFH = Purple). So for instance, if today were Wednesday, the label text color for Jon would be green and Mike would be purple. I have gathered the schedule information and placed it into a new Dataverse table (shown below).

The label to be changed is part of a gallery that displays the User and the Desk Location.

This data is pulled from a collection, created from the Office365 connector:
ClearCollect(
col_Users,
Filter(
Office365Users.SearchUser({top: 999}),
OfficeLocation <> Blank()
)
I am then looking up the label info as follows:
LookUp(
col_Users,
OfficeLocation = ThisItem.locName,
DisplayName
)
My thinking is to use a Lookup against the Dataverse table to find the user based on DisplayName (lbl_User_FL1) and then change the text color based on the information in the Dataverse column for the current day.
I have run myself in circles trying to use Switch and Lookup, but I just cannot seem to get it right....
Any help is appreciated.
JF