First pass conversion of NAV Patterns
This commit is contained in:
parent
1341938262
commit
6b32107a72
325 changed files with 11946 additions and 0 deletions
16
content/NAVPatterns/using-calcdate/index.md
Normal file
16
content/NAVPatterns/using-calcdate/index.md
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
+++
|
||||
title = "using-calcdate.md"
|
||||
weight = 1370
|
||||
+++
|
||||
CALCDATE should only be used with DateFormula variables. Alternatively the string should be enclosed using the <\> symbols.
|
||||
Bad code
|
||||
|
||||
IF ReservEntry."Expected Receipt Date" \>
|
||||
CALCDATE('-' + FORMAT("Dampener (Time)") + FirstDate)
|
||||
THEN
|
||||
|
||||
Good code
|
||||
|
||||
IF ReservEntry."Expected Receipt Date" \>
|
||||
CALCDATE('<-' + FORMAT("Dampener (Time)") + FirstDate + '\>')
|
||||
THEN
|
||||
Loading…
Add table
Add a link
Reference in a new issue