Showing posts with label line. Show all posts
Showing posts with label line. Show all posts

Friday, March 9, 2012

next line

is there a way in an expression that I can tell it to carry over to the next
line?Yes use:
= Fields!MyField1.Value & vbCrLf & Fields!Fields2.Value
HTH,
Magendo_man
"Ben Watts" wrote:
> is there a way in an expression that I can tell it to carry over to the next
> line?
>
>|||Thanks very much
"magendo_man" <magendoman@.discussions.microsoft.com> wrote in message
news:3FEEEFCD-B686-4FD4-80EB-D9EDCFF5916D@.microsoft.com...
> Yes use:
> = Fields!MyField1.Value & vbCrLf & Fields!Fields2.Value
> HTH,
> Magendo_man
> "Ben Watts" wrote:
>> is there a way in an expression that I can tell it to carry over to the
>> next
>> line?
>>

Wednesday, March 7, 2012

Newline Character?

Hi, is there an newline character (e.g. \n ) which explicitly instructs the report designer to insert a new line ? I haven't been able to find anything in the Reporting Definition Language Specification Paper and I was wondering if anyone knows the answer.
Thanks.You can use VB's new line constant : vbNewLine, like this :

="General" & vbNewLine & "Ledger"

|||Thanks - worked like a charm