bold issue

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Hi,

I have a text box on a report and I am trying to figure
out some code. As seen below, I have the employee first
and last name being displayed with the first letters of
their name in upper case.

="Name: " & StrConv([EmployeeFName],3) & " " & StrConv
([EmployeeLName],3) & " " & "( Emp. ID: " & [EmployeeID]
& " ; wk # " & [WorkPhone] & " ; ext # " & [ExtNumber]
& " ) "


I would like to add the record count in front of this code
by using CurrentRecord. As in, =[CurrentRecord]
&"Name: "&StrConv([EmployeeFName]....

Is there a way I can have CurrentRecord in bold and the
rest of the code not in bold? Not sure if this is
possible. Would something like FontBold be close?

Thanks for the help!!!!!!!!
 
Is there a way I can have CurrentRecord in bold and the
rest of the code not in bold?

Only by displaying it in a separate textbox rather than concatenating
it into the same string.
 
Back
Top