I have written a program which puts data into an Access table and then prints it out as a report.

Some of the field values are strings comprised of several string variables concatenated together. I want to include tabs between the variables so that they line up in vertical columns in the report.

I've tried the following code to generate the strings but they just put square boxes between the values.

String = Variable1 & Char(9) & Variable2

String = Variable1 & VbTab & Variable2

Is it possible to do what I want and if so how?

Thanks

RB