Hi all,
I have two objects in a database that are both string fields, there are some text fields in them but the one I’m interested in are used as numbers to indicate a month and a year. Can I format those fields into a date field and display it as a MMYYYY value? Even in the case highlighted in yellow, where the number is now correct, it still showing as an error when trying to make it a date? Any thoughts anyone please?
If I can get this working as a usable date, we want to use it as an alert against currentdate.
[P User Cat1] is the year so im trying to add 20 to the start to make a full year and [P User Cat2] is the month.
Var1:
=ToNumber([P User Cat2])+“20”+ToNumber([P User Cat1])
Varr2:
=ToDate([Var1];“MMYYYY”)

