Is there a way of combining 2 text fields into one, but having different fonts?
e.g.
In a table, I have 2 fields, Comments and Recommendations.
I want to combine them in a TextBox on a report.
I know I can do it by using:
=[Comments] & "
" & [Recommendations]
That makes this:
Comments: Hello, this is a comment. I'm only going to give comments for now!
Recommendations: This is the recommendation. If you don't do what I tell you, evil will reside!
Into this:
Is there any way I can have the recommendation in a different colour or font or something?
Many thanks for anyone who helps.
Regards,
Aubs
e.g.
In a table, I have 2 fields, Comments and Recommendations.
I want to combine them in a TextBox on a report.
I know I can do it by using:
=[Comments] & "
" & [Recommendations]
That makes this:
Comments: Hello, this is a comment. I'm only going to give comments for now!
Recommendations: This is the recommendation. If you don't do what I tell you, evil will reside!
Into this:
Code:
Hello, this is a
comment. I'm only
going to give
comments for now!
This is the
recommendation. If
you don't do what
I tell you, evil
will reside!
Is there any way I can have the recommendation in a different colour or font or something?
Many thanks for anyone who helps.
Regards,
Aubs