I have a template built and I’m struggling with syntax.
I have a orders table and I want to get a list of all of the unique items a customer ordered and then display details of those items from the product table.
In the below it doesn’t recognise [ItemID#].[Name].
I’m assuming you can’t use a select like that in a start function? If not how do I get the unique values?
Within a pair of <<Start>> and <<End>> tags, direct column references (e.g., [Name]) refer to the row provided by the <<Start>> expression. Your <<Start>> expression provides a list of ItemID# values, so [Name] would refer to the Name column value of the row identified by the current ItemID# value.
@Steve - I am facing similar issue. I want distinct records from a column which is not the key column of that table, infact its a virtual column.
SELECT works only with key column but my purpose is not solved as I want distinct records of another column and If I use other column in the SELECT, it doesn’t work.