Options

Can page display dash (-) as zero?

wolfskinwolfskin Member Posts: 84
Hi everyone,

I knew that page can display blank as zero by using "BlankZero" property but if I would like to display dash instead of blank when the value is zero.

There is any way to do?


Thank you

Answers

  • Options
    mucamuca Member Posts: 42
    Yes. but depends on version You use.
    In Forms (older navision versions) there should be a trigger OnFormat
    NumberField - OnFormat(VAR Text : Text[1024];)
    IF NumberField=0 THEN Text:=' - ';
    
  • Options
    wolfskinwolfskin Member Posts: 84
    muca wrote: »
    Yes. but depends on version You use.
    In Forms (older navision versions) there should be a trigger OnFormat
    NumberField - OnFormat(VAR Text : Text[1024];)
    IF NumberField=0 THEN Text:=' - ';
    

    Hi muca, thank you for your answer. But I am working on Dynamics NAV 2018. Do you think it would be possible?
Sign In or Register to comment.