Mar 26, 2003 #1 yellowke Programmer Nov 5, 2002 48 BE Hi I converted a character element of a table to date. Now I want a list of it and I use: list name for hiredate = "01.03.2003" but I get the following error: operator/operand type mismatch What is the correct way to use list in this case? Thanx
Hi I converted a character element of a table to date. Now I want a list of it and I use: list name for hiredate = "01.03.2003" but I get the following error: operator/operand type mismatch What is the correct way to use list in this case? Thanx
Mar 26, 2003 #2 Mike Gagnon Programmer Apr 6, 2002 8,067 CA yellowke list name for hiredate = "01.03.2003" Try list name for hiredate = CTOD("01.03.2003" Mike Gagnon If you want to get the best response to a question, please check out FAQ184-2483 first. Upvote 0 Downvote
yellowke list name for hiredate = "01.03.2003" Try list name for hiredate = CTOD("01.03.2003" Mike Gagnon If you want to get the best response to a question, please check out FAQ184-2483 first.
Mar 26, 2003 Thread starter #3 yellowke Programmer Nov 5, 2002 48 BE it works. Thank you Upvote 0 Downvote