May 26, 2005 #1 vbjohn Programmer Aug 23, 2001 67 US When I run the Syntax check it gives me a message saying "a Text is required here" and it highlights the whole Year function... MonthName(Month ({SlsInquiry.DateSales}), True) + ". " + Year({SlsInquiry.DateSales})
When I run the Syntax check it gives me a message saying "a Text is required here" and it highlights the whole Year function... MonthName(Month ({SlsInquiry.DateSales}), True) + ". " + Year({SlsInquiry.DateSales})
May 26, 2005 #2 synapsevampire Programmer Mar 23, 2002 20,180 US Try: MonthName(Month ({SlsInquiry.DateSales}), True) + ". " + totext(Year({SlsInquiry.DateSales}),0,"") or use: MonthName(Month ({SlsInquiry.DateSales}), True) & ". " & Year({SlsInquiry.DateSales}) -k Upvote 0 Downvote
Try: MonthName(Month ({SlsInquiry.DateSales}), True) + ". " + totext(Year({SlsInquiry.DateSales}),0,"") or use: MonthName(Month ({SlsInquiry.DateSales}), True) & ". " & Year({SlsInquiry.DateSales}) -k
May 26, 2005 Thread starter #3 vbjohn Programmer Aug 23, 2001 67 US Awesome! Thanks. Upvote 0 Downvote