0

Command dosen't work in mac App

hallo,

if not Identificativo then
let y := year('ID NOTA'.DATA.DATA);
let m := month('ID NOTA'.DATA.DATA);
let d := day('ID NOTA'.DATA.DATA);
let c := cnt(select 'ID Nota' where year('ID NOTA'.DATA.DATA) = y and month('ID NOTA'.DATA.DATA) = m);
Identificativo := y + format(m, "00") + format(d, "00") + format(c, "0000")
else
void
end

I created this command in a browser (from yours template) and works propely but is not the same in mac app: the field become empty.

Any idea?

Tks

bye

3 replies

null
    • Support
    • 6 yrs ago
    • Reported - view

    Try this formula instaed:

    –––
    Identificativo := if not Identificativo then
    let myDate := first('ID NOTA'.DATA.DATA);
    let myCount := cnt(select 'ID Nota' where yearmonth(DATA.DATA) = yearmonth(myDate));
    format(myDate,"YYYYMMDD") + format(myCount, "0000")
    end
    –––

    Birgrer

    • Enzo
    • 6 yrs ago
    • Reported - view

    Leider funktioniert es nicht.

    Danke!

    Enzo

    • hanimax4001
    • 5 yrs ago
    • Reported - view

    예제파일을 올려주세요

Content aside

  • 5 yrs agoLast active
  • 3Replies
  • 1827Views