Yes I guess i could do that but it would mean I would have to edit the report to add a new language. I was thinking more along the lines that I would use SQL Commands...
select Text from Languages where textcode = 'title' and Language = {?Language}
Then i would only need to add the new language to the database...
Main Topics
Browse All Topics





by: mlmccPosted on 2009-10-08 at 06:55:57ID: 25525395
Are the title strings variable in the report?
One way to do it is to use formulas like
If {?Language} = 'English' then
'Name'
Else if {?Language} = 'French' then
'Nom'
Else etc
For varying text you can do the same thing
If {?Language} = 'English' then
{EnglishColumn}
Else if {?Language} = 'French' then
{FrenchColumn}
Else etc
mlmcc