Page 1 of 1

How to combine columns of 2 data sources with no SQL code?

Posted: Wed Dec 18, 2013 10:34 pm
by theregister
Is it possible to combine 2 columns from different data sources and make them match?

For example, if I have a data source with a query that returns daily product sales, and another data source that has all the products that are available to sell, can I drag and drop the product name colum from the products data source, and somehow make it match with the sales from the other data source?

I know I could just add a JOIN to the sales query and get the product name as well, but I want to know if it can be done just by using the GUI

Thanks.

Re: How to combine columns of 2 data sources with no SQL cod

Posted: Thu Dec 19, 2013 9:04 am
by Alex K.
Hello,

Please try to add the relation between these datasources and use the following expression:
DataSourceProducts.RelationName.ColumnNameFromDataSourceSales

Thank you.