Feb 8, 2007 #1 oneleaf5 Technical User Nov 17, 2005 11 US Can a DLookup be run on a Memo field in a report? I am trying to get a Memo field to appear on the Report Header of my report. The code I'm executing is this: =DLookUp("WhatsNew","tblFiscalYear","FY=" & [FY]) Any suggestions? thanks as always, oneleaf
Can a DLookup be run on a Memo field in a report? I am trying to get a Memo field to appear on the Report Header of my report. The code I'm executing is this: =DLookUp("WhatsNew","tblFiscalYear","FY=" & [FY]) Any suggestions? thanks as always, oneleaf
Feb 9, 2007 #2 Remou Technical User Sep 30, 2002 13,030 BE Is FY a text field? If so: [tt]=DLookUp("WhatsNew","tblFiscalYear","FY='" & [FY] & "'")[/tt] Upvote 0 Downvote
Feb 9, 2007 Thread starter #3 oneleaf5 Technical User Nov 17, 2005 11 US Remou, It worked -- again you have come to my rescue. Many thanks, oneleaf Upvote 0 Downvote