I have written this on the fill property of circle:
If(
StartsWith(projmethodlbl.Text, "^Agile") && EndsWith(prjcontlbl.Text, "T & M"),
If(
ThisItem.Commit = "Red",
Red,
ThisItem.Commit = "Amber",
Orange,
ThisItem.Commit = "Green",
Green
),
If(
ThisItem.SCHEDULE = "Red",
Red,
ThisItem.SCHEDULE = "Amber",
Orange,
ThisItem.SCHEDULE = "Green",
Green
))
But its working only for the first condition