Hi All,
A report has 3 paratmeters
1. account group
2. Unit
3. Period
My user wants another parameter which will be Account Type
where the input value is enter as eg: ASSET or LIABILITY or ALL
But using the database field I can Identify if it's asset or liablitiy by
doing writing this formula
@AccountType
if RIGHT({table.field},2) = '01' then
'ASSET'
else
if RIGHT({table.field},2) = '02' then
'LIABILITY'
How can I check it in record selection when the new parameter {?AccountType} is added.
if {?AccountType} = 'ALL' then
true
else
How can I check {?AccountType} against the database field.
Any ideas are grealty appericated...
Thanks in Advance,
Sweetie
A report has 3 paratmeters
1. account group
2. Unit
3. Period
My user wants another parameter which will be Account Type
where the input value is enter as eg: ASSET or LIABILITY or ALL
But using the database field I can Identify if it's asset or liablitiy by
doing writing this formula
@AccountType
if RIGHT({table.field},2) = '01' then
'ASSET'
else
if RIGHT({table.field},2) = '02' then
'LIABILITY'
How can I check it in record selection when the new parameter {?AccountType} is added.
if {?AccountType} = 'ALL' then
true
else
How can I check {?AccountType} against the database field.
Any ideas are grealty appericated...
Thanks in Advance,
Sweetie