hi,
my data looks like this
paper paper paper paper Entry paper
date code in stock to use location
12/20/2007 AT F T 300 DR
12/20/2007 AT T F 423 DR
01/06/2008 CR T T 29 CPA
01/07/2008 CM T F 10 XTM
so on
i want to highlight entry like 300- and 423+ based on paper in stock.i.e
if paper in stock = F then entry followed by (-) sign else if paper in stock = T and paper in stock = F then entry followed by (+) sign else just entry.
This works fine at the row level,but I have to use a cross tab as the paper locations could be dynamic. cross tab data is shown below
Rows
Paper date
Paper code
Columns
paper location
summarized field
@entry.
@entry formula:
if paperinstock = 'F' then entry & '-'
if paperinstock = 'T' and papertouse = 'F'
then entry & '+'
else entry
but a cross tab can have max,min,count etc as summarized fields.if there is only one row then @entry works fine but there are sometimes multiple rows and brings the max or min(depending on the summary I use)etc regardless of paperinstock or papertouse condition.
Is there a way to highlight the entry values with + or -.
If there are multiple rows,only one row to be returned as the sequence in @entry formula.
Thanks
my data looks like this
paper paper paper paper Entry paper
date code in stock to use location
12/20/2007 AT F T 300 DR
12/20/2007 AT T F 423 DR
01/06/2008 CR T T 29 CPA
01/07/2008 CM T F 10 XTM
so on
i want to highlight entry like 300- and 423+ based on paper in stock.i.e
if paper in stock = F then entry followed by (-) sign else if paper in stock = T and paper in stock = F then entry followed by (+) sign else just entry.
This works fine at the row level,but I have to use a cross tab as the paper locations could be dynamic. cross tab data is shown below
Rows
Paper date
Paper code
Columns
paper location
summarized field
@entry.
@entry formula:
if paperinstock = 'F' then entry & '-'
if paperinstock = 'T' and papertouse = 'F'
then entry & '+'
else entry
but a cross tab can have max,min,count etc as summarized fields.if there is only one row then @entry works fine but there are sometimes multiple rows and brings the max or min(depending on the summary I use)etc regardless of paperinstock or papertouse condition.
Is there a way to highlight the entry values with + or -.
If there are multiple rows,only one row to be returned as the sequence in @entry formula.
Thanks