I have a report rptFirstLetter that has a textbox for full name that pulls off a query that
FullName: StrConv([FIRSTName] & " " & [LASTName] & " " & [companyname],3)
On the report I have a textbox that has a control source of
="Dear" & " " & [fullFirst] & ","
[fullFirst] comes from the query too
FullFirst: StrConv([FIRSTName],3)
Letter will show
Dear Irene
Which work's great if it's a person name but if it's a company I would like the letter to say
Dear Sir
Is there away to do this.
Thank you,
Irene
FullName: StrConv([FIRSTName] & " " & [LASTName] & " " & [companyname],3)
On the report I have a textbox that has a control source of
="Dear" & " " & [fullFirst] & ","
[fullFirst] comes from the query too
FullFirst: StrConv([FIRSTName],3)
Letter will show
Dear Irene
Which work's great if it's a person name but if it's a company I would like the letter to say
Dear Sir
Is there away to do this.
Thank you,
Irene