That goes in the {REPORT SQL DETAILS: tag, could you put your SQL into that?
Here is my price list report;
[Price List:5 ,3,3, 1, 2]
>Product | Portion | Group | Band | Price
{REPORT SQL DETAILS:
SELECT
product.[GroupCode] AS [Group],
product.[Name] AS [Product],
portion.[Name] AS [Portion],
price.[PriceTag] AS [Price Band],
price.[Price] AS [Price]
FROM [MenuItems] product
LEFT JOIN [MenuItemPortions] portion
ON product.[Id] = portion.[MenuItemId]
LEFT JOIN [MenuItemPrices] price
ON price.[MenuItemPortionId] = portion.[Id]
ORDER BY product.[GroupCode]
:F.Product,F.Portion,F.Group,F.Price Band,F.Price::{0} |{1}| {2}| {3}| £{4}
}
Just checked and works fine just like;
:F.Product,F.Portion,F.Group,F.Price Band,F.Price::{0} |{1}| {2}| {3}| ${4}