SourceExpr Force "Enter"

rico1931rico1931 Member Posts: 295
Hi everyone,

Does anyone know how to do a line break in the Source Expression property field?

I have the following
TempSalesShipmentLine."Cross-Reference No." + ' ' + TempSalesShipmentLine.Description + ' ' + TempSalesShipmentLine."Description 2" and I want to force a line break in between each field when it prints out. Anyone have any ideas how I could accomplish this?

Thanks
-rico1931

Answers

  • rico1931rico1931 Member Posts: 295
    Ok I got it... use '\' ... but how would you accomplish the same thing in RTC reports in Visual Studio then?
    rico1931 wrote:
    Hi everyone,

    Does anyone know how to do a line break in the Source Expression property field?

    I have the following
    TempSalesShipmentLine."Cross-Reference No." + ' ' + TempSalesShipmentLine.Description + ' ' + TempSalesShipmentLine."Description 2" and I want to force a line break in between each field when it prints out. Anyone have any ideas how I could accomplish this?

    Thanks
    -rico1931
  • skullaskulla Member Posts: 140
    You can vbcrlf between two expressions. For ex: "test1" & vbcrlf & "test2" will print
    test1
    test2
  • rico1931rico1931 Member Posts: 295
    YOU ROCK skulla
    skulla wrote:
    You can vbcrlf between two expressions. For ex: "test1" & vbcrlf & "test2" will print
    test1
    test2
    -rico1931
Sign In or Register to comment.