0

I have a string that I am trying to build with text and other variables.
Is there a way to build the string so that I can use other variables ?

I have a text file that my vba is reading to compose the body of an email.

The text file has this line:

email_body|"Final Reports will be distributed on or after \" & Me.cbo_Month.Column(0) & \" 10th. 

I am calling the function MessageBody = getAdmSetting("email_body") which returns the string exactly:Final Reports will be distributed on or after \" & Me.cbo_Month.Column(0) & \" 10th.

If I debug.print MessageBody, i get the string exactly. I am trying to get the value of Me.cbo_Month.Column(0) to print.

debug: Final Reports will be distributed on or after \" & Me.cbo_Month.Column(0) & \" 10th. 

I would like it to print: Final Reports will be distributed on or after January 10th.

2

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.