What is line feed character in access report?

  • Thread starter Thread starter SF
  • Start date Start date
S

SF

Hi,

I have a label that print the following:

=IIf(IsNull([SerialNumber]),[NewCode],[NewCode] & Chr(13) & "S/N: " &
[SerialNumber])

If the Serail Number is not null, I want the serail number display below the
NewCode. So far no success.

Anyone suggest something?

SF
 
Big appreciation and thank you for your prompt response.

SF

Allen Browne said:
Carriage return plus line feed:
Chr(13) & Chr(10)

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

SF said:
Hi,

I have a label that print the following:

=IIf(IsNull([SerialNumber]),[NewCode],[NewCode] & Chr(13) & "S/N: " &
[SerialNumber])

If the Serail Number is not null, I want the serail number display below
the
NewCode. So far no success.

Anyone suggest something?
 
Back
Top