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..
A way to use where clause in Report
-
- Posts: 824
- Joined: Tue Mar 13, 2012 9:53 am
Re: A way to use where clause in Report
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.
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
Mark Monroe
Beijer Electronics, Inc. | Applications Engineer
-
- Posts: 9
- Joined: Tue Jan 17, 2012 2:47 am
Re: A way to use where clause in Report
Hi! Still no way to use dynamic values (tag value) in WHERE clause?