In MoneyWorks accounting software, you can add the specification or the content of the product under the Comment field of the item profile.
If you like to add this “comment” in the invoice template, you may customize the “Description” column of the invoice template and add a Lookup() function after the Description code:
Lookup (Detail.StockCode, “Product.Comment”)
The Calculation box of the Description column will be as:
if(Detail.StockCode = “*@”, “\n”, “”) + Detail.Description + “\n” + lookup (Detail.StockCode, “Product.Comment”)