Hi all,
I've found a module that I think will help me combine fields properly, but I'm unsure how to add or use it with Access
2000. Below is the module I'd like to add:
In Access, I goto Modules and create new. Leaving 'Option Compare Database' on top I paste the module code in and save
- naming it fConcatFld. It saves fine, but when I use fConcatFld in my query, like below:
SELECT PtName, fConcatFld("PtN otes") as Combined
FROM TESTCMSSPatient NotesQ001
Group by PtName
It errors out saying fConcatFld is an invalid function. I might have this entire process wrong... so how do I add this
function to Access so I can use it?
Thanks,
Alex.
I've found a module that I think will help me combine fields properly, but I'm unsure how to add or use it with Access
2000. Below is the module I'd like to add:
In Access, I goto Modules and create new. Leaving 'Option Compare Database' on top I paste the module code in and save
- naming it fConcatFld. It saves fine, but when I use fConcatFld in my query, like below:
SELECT PtName, fConcatFld("PtN otes") as Combined
FROM TESTCMSSPatient NotesQ001
Group by PtName
It errors out saying fConcatFld is an invalid function. I might have this entire process wrong... so how do I add this
function to Access so I can use it?
Thanks,
Alex.
Comment