Hi,
Any idea on how to store a specific date value in a field?
Ex: 01/01/2023 has to be stored to a field.
In LPL, to store a specific date (January 1st, 2023 in your example) to a Date field, you assign it an 8-character numeric value yyyymmdd, i.e.:
DateFieldName = 20230101
That worked. Thanks!!