I hope this hasn't been answered already -- I tried searching the message boards and couldn't find it.
I have a table which lists clients and it's linked to another table which lists delivery dates for them. But not all clients have a delivery date:
[Client] [DelDate]
Client1 June12
Client2
Client3 June14
etc
If I change the formatting for the date field (i.e. make the background silver), the empty fields do not get formatted.
What I'm trying to do is alternate the background on successive lines, but whenever there is no date, there is a white space gap. Any ideas?
Here are my formatting formulas:
//in header @Init
whileprintingrecords;
global numbervar groupcount := 0;
//in details @GroupColour
whileprintingrecords;
global numbervar groupcount;
groupcount := groupcount + 1;
if remainder(groupcount,2) = 0 then silver
else white;
//x=2 background formatting formula
{@GroupColour}
I have a table which lists clients and it's linked to another table which lists delivery dates for them. But not all clients have a delivery date:
[Client] [DelDate]
Client1 June12
Client2
Client3 June14
etc
If I change the formatting for the date field (i.e. make the background silver), the empty fields do not get formatted.
What I'm trying to do is alternate the background on successive lines, but whenever there is no date, there is a white space gap. Any ideas?
Here are my formatting formulas:
//in header @Init
whileprintingrecords;
global numbervar groupcount := 0;
//in details @GroupColour
whileprintingrecords;
global numbervar groupcount;
groupcount := groupcount + 1;
if remainder(groupcount,2) = 0 then silver
else white;
//x=2 background formatting formula
{@GroupColour}