I have a pop-up status field I use that consists of 3 values, open; closed; focus.
I would like the associated item background color to change when one of those values is selected. It's not working and I'm probably missing something obvious as to why it's not. Instructions please?
Thanks
Comments
Function ColorFromStatus(Status) ' calculation of the itemcolor color code dim s s=ucase(Status) if isnull(s) or s="" then ColorFromStatus="" else select case s case "OPEN" : ColorFromStatus="" case "CLOSED" : ColorFromStatus="Moss" end select end if End Function[Status] = "closed" : backcolor=&hB1DABE