rate title getting displayed twice in invoice print

Discussion in 'Tally Developer' started by bytelogik, Jul 11, 2023.

    
  1. bytelogik

    bytelogik New Member


    Want to change the title of Rate field in invoice print. it gets changed but the "Rate" text remains in the column title along with the changed name. How to make it appear in one word?

    [#Line: ExpInv Column1]
    local: field:EXPINV RateTitle:Set as : $$LocaleString:"Hello"

    [#Line: EXPINV Column2]
    local: field:EXPINV RateTitle:Set as : $$LocaleString:"Hello"
     


  2. Amit Kamdar

    Amit Kamdar Administrator Staff Member


    EXPINV Column1 and EXPINV Column2 are common to many PARTS ...........

    Find the right one and reference to it.
     


  3. bytelogik

    bytelogik New Member


    thanks Amitji..
    it was bit confusing as the part has 2 line definitions. would have been better if it was just one line.

    but it got worked some how:


    [#Line: EXPINV Column2]
    local: field:EXPINV RateTitle:Set as : $$LocaleString:"" ;set to blank

    [#Line: ExpInv Column1]
    local: field:EXPINV RateTitle:Set as : $$LocaleString:"Hello"
     


Share This Page