On Fri, 14 May 2010 21:47:07 -0000, "majesticartz" <[email protected]> wrote:
>&(formatdate( "dddd, dd MMMM yyyy", &(date))) > > >Why won't this work? Is there a one line workaround? It's not clear what you are trying to do. Formatdate takes two strings as arguments so you need to drop the &() around date. Date returns a string. Formatdate returns a string which is normally what you want. You should avoid using &. It is normally not needed. -- Carroll B. Robbins, Jr.
