crystal reports problem

  • Thread starter Thread starter Michael Schindler
  • Start date Start date
M

Michael Schindler

1. How i can set a variable into my form an print this variable into my
crystalreport?

I have a variable "title". This variable must be able to change before
print.
How i can set my variable into my report?

2. I have datas
Nr.-----description-----Typ

if the typ is "Title" i would like this line print in bold is this possible
and why?


Thanks for your help

Michael
 
Hi Michael

yes this should be possible
in crystal create a new Formula Field and set the formula
if [Field] = 'title' then
format expression;
hope this helps
 
Please help me a little bit more:

format expression;?

IF {tblFiBuKontenplan.FiBuKontenplanArt} = 'Ueberschrift' THEN
{tblFiBuKontenplan.FiBuKontenplanBezeichnung}
// bold
ELSE {tblFiBuKontenplan.FiBuKontenplanArt} = 'Konto'
{tblFiBuKontenplan.FiBuKontenplanBezeichnung}
// normal

Thanks michael
 
Back
Top