Hi
I have
Dim cResolved As New ConditionalFormattingObject("Resolved", ConditionTypes.Equal, "Resolved", "", True)
cResolved.RowForeColor = Color.DarkGreen
cResolved.CellForeColor = Color.DarkGreen
dgServices.Columns("Status").ConditionalFormattingObjectList.Add(cResolved)
And this works great. How would I add another condition to this so
"Status = Resolved" AND ResolveUser="USER"
Thanks in advance
I have
Dim cResolved As New ConditionalFormattingObject("Resolved", ConditionTypes.Equal, "Resolved", "", True)
cResolved.RowForeColor = Color.DarkGreen
cResolved.CellForeColor = Color.DarkGreen
dgServices.Columns("Status").ConditionalFormattingObjectList.Add(cResolved)
And this works great. How would I add another condition to this so
"Status = Resolved" AND ResolveUser="USER"
Thanks in advance