Hi @LaingBennett ,
Is the solution I provided above helpful in your scenario?
If you want to change the Color of the Column chart based on the selected Departement value, I think the ItemColorSet property of the Column chart and the If function could achieve your needs.
Please consider set the ItemColorSet property of the Column Chart to following formula:
[
If(
DepartmentDropdown.Selected.Value = "Lyminge", Color.Red,
DepartmentDropdown.Selected.Value ="Hythe", Color.Blue,
DepartmentDropdown.Selected.Value ="Lettings", Color.Yellow
),
RGBA(48,166,103, 1), RGBA(94,193,108,1), RGBA(246,199,144,1), RGBA(247,199,114,1), RGBA(247,180,91,1), RGBA(246,143,100,1), RGBA(212,96,104,1), RGBA(148, 110, 176, 1), RGBA(118, 154, 204, 1), RGBA(96, 197, 234, 1)
]
Note: If you want to change the Color of other series column within this Column chart, same logic as the first item within above array.
If you have solved your problem, please consider go ahead to click "Accept as Solution" to identify this thread has been solved.
Best regards,