A way to use where clause in Report

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
memethemyn
Posts: 51
Joined: Fri Apr 27, 2012 12:33 pm

A way to use where clause in Report

Post by memethemyn »

Hi..

Is there a way to use a where clause in excel when using a database report..

I tried many way even the filtering in option excel but I didn't get a result..

Also I try to import a third party report component into IX but I couldn't.

Please Help me about this issiue..

Mehmet Emin..

mark.monroe
Posts: 824
Joined: Tue Mar 13, 2012 9:53 am

Re: A way to use where clause in Report

Post by mark.monroe »

You can use a where clause in the Report, but the where can not be dynamic. You can not for example use a tag in the where clause to change what the query is looking for.

This will not work because you are referencing a dynamic variable, SomeTagValue.
Select MyCol from TableName where ID < SomeTagValue.

You can only do:
Select MyCol from TableName where ID < 1000.
Best Regards,
Mark Monroe

Beijer Electronics, Inc. | Applications Engineer

val_pilats
Posts: 9
Joined: Tue Jan 17, 2012 2:47 am

Re: A way to use where clause in Report

Post by val_pilats »

Hi! Still no way to use dynamic values (tag value) in WHERE clause?

Post Reply