underline

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

in my report, i have a field ="This is to certify that " & [Number] & " " &
[Unit] & " of " & [Name]
I only want [Name] underlined. Is there a function like UCase([Name]) to
underline it?
 
benj said:
in my report, i have a field ="This is to certify that " & [Number] & " " &
[Unit] & " of " & [Name]
I only want [Name] underlined. Is there a function like UCase([Name]) to
underline it?


No, there is no way to format just a part of the data in a
text box.

If it is very important to do this, you will need to use a
third party control such as the Rich Text Format (RTF)
control at www.lebans.com
 
thanks for the info!

Marshall Barton said:
benj said:
in my report, i have a field ="This is to certify that " & [Number] & " " &
[Unit] & " of " & [Name]
I only want [Name] underlined. Is there a function like UCase([Name]) to
underline it?


No, there is no way to format just a part of the data in a
text box.

If it is very important to do this, you will need to use a
third party control such as the Rich Text Format (RTF)
control at www.lebans.com
 
Back
Top