When item is marked datedone I have the following equation
A:ItemForeColor=&H808080|
ME:ItemForeColor=&H000000|
I assumed with the above the following would happen:
A: if datedone is 1 (yes) then ItemForeColor=&H808080 (gray)
ME: if datedone is 0 or changed then ItemForeColor=&H000000 (black)
but it's not happening.
Comments
IIF(
DoneDate
= 1, &H808080,&H000000)
AM:
IIF(
DoneDate
= 1, &H808080,&H000000)
-1:DoneDate=1:ForeColor=&H808080
-1:DoneDate=0:ForeColor=&H000000
-1:SPri>0:Bold=1|Italic=1
-1:PriInt>0:ForeColor=DarkRed
-1:PriInt>1:ForeColor=OrangeRed
-1:PriInt>2:ForeColor=DarkGreen
-1:PriInt>3:ForeColor=DarkBlue
-1:PriInt>4:ForeColor=RoyalBlue
-1:PriInt>5:ForeColor=SteelBlue
-1:NotesG<>0:ForeColor=Gray
-1:CLHave=0:Italic=1
-1:IsGroup<>0:ForeColor=Black|Bold=1
0:WorkIsSprint<>0:ForeColor=MidnightBlue|Bold=1
-1:Check<>0:StrikeOut=1|ForeColor=Gray
-1:Key<>0:ForeColor=DarkRed
-1:WorkIsStory<>0:Italic=1|Bold=1
-1:TaskCurrent<>0:BackColor=Yellow