view specific fields in a report in navision

karuchuakaruchua Member Posts: 151
is it possible to view specific fields only in a report depending on my line type

Comments

  • txerifftxeriff Member Posts: 500
    create multiple sections in the report. press F3 and then choose a new body section. F deletes it by clicking in the grey bar of each section.

    go to the presection trigger by double clicking in the section and type:

    if whateverCondition=1 then
    currreport.showoutput(false)
    else
    currreport.showoutput(true)
  • karuchuakaruchua Member Posts: 151
    thxs @txeriff,it works!!!
Sign In or Register to comment.