Hi
i am new member in this post, i planing to buy stimulsoft reports.Fx of Php
i have few question about stimulsoft
1. how to use (iff Function)
E.g. iif(DataSource1.invoicedate="",DataSource1.orderdate,DataSource1.invoicedate)
2. how to call reportextbox.value. (usually i am using sql (ssrs))
E.g. Like(=reportitems!textbox46.value)
Thanks
selva
iif function(formula)
-
- Posts: 1
- Joined: Tue Aug 07, 2012 10:00 am
Re: iif function(formula)
Hello.
Thank you.
Please, try to use one of two next statements:selvamurthi wrote:1. how to use (iff Function)
E.g. iif(DataSource1.invoicedate="",DataSource1.orderdate,DataSource1.invoicedate)
Code: Select all
iif(DataSource1.invoicedate=="", .......
iif(DataSource1.invoicedate==null, .......
Unfortunately, the component values is not available in expressions.selvamurthi wrote:2. how to call reportextbox.value. (usually i am using sql (ssrs))
E.g. Like(=reportitems!textbox46.value)
Thank you.