I want to print text1 when "Mytable.price > 0" or print text2 when "MyTable.price = 0"
how to in Report ?
Many thanks for help
Enio Donci from italy
Print conditional text
Re: Print conditional text
Hello.
Please, try to use next expression:Thank you.
You could do it with IIF() function.mirmidone wrote:I want to print text1 when "Mytable.price > 0" or print text2 when "MyTable.price = 0"
how to in Report ?
Please, try to use next expression:
Code: Select all
{IIF(MyTable.price > 0,"text1",IIF(MyTable.price == 0,"text2",""))}
Re: Print conditional text
Ok work fine !!!
many thanks
many thanks
Re: Print conditional text
Hello,
Great!
Great!