How do I modify a receipt, so I can add one more column to identify all taxable items with letter ?T??
Receipt, Taxable items.
Oct 19, 2009
3 Replies
hi Yuri, Which report you are modifying, well whichever you want make sure it has column what you needed, like if you are having the item table , it is by detault column of taxable there.
so add the column to report with .grp extension , open in notepad and add like below code:
Begin Column FieldName = "Taxable" DrillDownFieldName = "" DrillDownReportName = "" StoreIDFieldName = "" Title = "Jan" VBDataType = vbString Formula = "CASE WHEN Item.Taxable=1 THEN 'T' ELSE 'N' END" ColHidden = False ColNotDisplayable = False FilterDisabled = True ColWidth = 825 GroupMethod = groupmethodnone End Column
"Yuri Bey" wrote:
hi i think i have forgot to given you solution for the .grp report for the Receipt we will use the Entry.Taxable variable with IF condition here is the sample code:
(Entry.Taxable= 1) "T"
"Yuri Bey" wrote:
Join the Discussion
Have something to add? Share your thoughts — no account required.
Didn't find your answer?
Ask the community — no account required