top of page
  • Writer's pictureEH Lim

Adding Product Comment to Invoice


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”)

21 views0 comments

Recent Posts

See All
bottom of page