kiss.shoremishra
Registered User.
- Local time
- Today, 21:02
- Joined
- Feb 4, 2017
- Messages
- 19
Hi I am trying to concatenate 3 numeric fields in a table Item Prefix, Item Suffix and WSI (Item Created), so that I could get the year wise count of concatenated values but I am getting "Syntax error in transform statement".
Could you please help, below is the access query I wrote.
TRANSFORM COUNT([Tbl - Supplier-Item].[Item Prefix] & "-" & [Tbl - Supplier-Item].[Item Suffix] & "-" & [Tbl - Supplier-Item].[WSI #]) AS SI
SELECT Format([Tbl - Supplier-Item].[SI Added],"yyyy") AS [YEAR ADDED]
FROM [Tbl - Supplier-Item]
GROUP BY Format([Tbl - Supplier-Item].[SI Added],"yyyy");
Could you please help, below is the access query I wrote.
TRANSFORM COUNT([Tbl - Supplier-Item].[Item Prefix] & "-" & [Tbl - Supplier-Item].[Item Suffix] & "-" & [Tbl - Supplier-Item].[WSI #]) AS SI
SELECT Format([Tbl - Supplier-Item].[SI Added],"yyyy") AS [YEAR ADDED]
FROM [Tbl - Supplier-Item]
GROUP BY Format([Tbl - Supplier-Item].[SI Added],"yyyy");