You want objectives assigned to all patients in a 'group'. It is not clear to me how a patient is identified with a 'group'.
Patients will be identified by their Level of Care (field in Patient data table). All patients at the PHP level of care would get the same psychoeducational note. I'm sure there is an easier approach instead of going all the way around my first to get to my thumb.
Why have users enter name in title case and upper case? Just enter the title case, the upper case can be set in reports by formatting code.
Truthfully it's because I don't know any better. I am still learning so much. I wish I knew as much as you and Alan and others here. I want to learn it, there's so much....and I am getting old quickly!
Why have them enter initial of last name? This can also be extracted from the name with string manipulation function: Left(LastName,1).
Cool! Can't wait to use this...and don't think my book has this. P.S. Already back, and love this, thank you! Getting my reference book out now to see if I can find this and flag the page
FirstNameLowerCase field looks more like nicknames.
It is...actually...of sorts. It is actually what the patient wants to be called.....you know like the full name might be William James Green, and he goes by "Billy", that's what goes in that field. And the UpperCase fields merge to a word document to title it, and the FirstNameLowerCase field, this one we are talking about, actually merges a number of times in the group note.
Since you have the Objective descriptions in multiple similar fields (which is not strict data normalization), will need to use concatenation string manipulation to display them together in one textbox.
I can try to set this up differently....if you think it would be better done a different way. I am not restricted to the way it is here. I can change it to anyway I think it should be. The problem is, I just don't have an approach to this.
Here's the way this is currently: (pretend you havn't seen the db). We have a hand completed form with checkboxes on the front. On the back of the form, is a list of objectives. The print size is about a 4, you can't read it, and about half the time, the counselors don't copy the back. When we get audited, we always get dinged because the objectives aren't listed, even though the front of the form says so. So, all I want to do is list the ONE topic of disccusion and the matching objectives on the front of a form...and i want the same form to print for all active patients.
Like:
Description1 & Chr(13) & Chr(10) & Description2 & Chr(13) & Chr(10) & ... Create a query doing this with an expression in Field row. Then this constructed field will be available to bind a textbox to when it is included in a form/report RecordSource. You will never, ever need more than 6 descriptions?