Does anyone have a function that will calculate when something is due 12 weeks out? I need it to look at the last obs date and then add 12 weeks and display "due"
Thanks!
description Adds the specified number of years, months, and days to a date. type Data symbol function syntax ADDDATES(date, years, months, days) arguments
when to evaluate In quick text or templates, set to Evaluate When Inserted in Note returns A string in the format dd/mm/yyyy comment The date parameter must be a string. If you use another symbol that returns a date, such as ._TODAYSDATE, you must convert it to a string. examples Please return for another cholesterol exam on {ADDDATES("3/1/1997","2","0","0")} Returns "Please return for another cholesterol exam on 03/01/1999." This example calculates an estimated delivery date based on the patient’s last menstrual period: ADDDATES(OBSANY("Last MP"), "0", "0", "280") where used Chart: letter and handout templates, text components, and quick text. |
Thanks - don't know how I missed that!!!