M
mark r
I don't understand why A responder to a previous post said
you can't do this with backcolor:
you can't make differential background colors for fields.
What you CAN do,
though, is to make differential forecolor fields. To do
this you will need
to overlap 3 fields:
1) first one- make it invisible; this field will have its
controlsource
property tied to the real underlying field
2) second field- make its control source property:
IIF(isnull(firstrecord), "", [firstrecord]))
Set this one to a transparent backstyle.
3) third field- make its control source property:
IIF(isnull(firstrecord), [firstrecord],""))
Set this one to a transparent backstyle.
This may work for you...
you can't do this with backcolor:
you can't make differential background colors for fields.
What you CAN do,
though, is to make differential forecolor fields. To do
this you will need
to overlap 3 fields:
1) first one- make it invisible; this field will have its
controlsource
property tied to the real underlying field
2) second field- make its control source property:
IIF(isnull(firstrecord), "", [firstrecord]))
Set this one to a transparent backstyle.
3) third field- make its control source property:
IIF(isnull(firstrecord), [firstrecord],""))
Set this one to a transparent backstyle.
This may work for you...