Crystal Report to SSRS

swan

I have this expression in crystal report

stringVar X :=   Right ({Database.Column},3);
Left (x,2)

I need to convert the above expression to SSRS Expression. Please, could anyone help on this?

Thank You.

alejandro zuleta

Try this:

=LEFT(RIGHT(Fields!DatabaseColumn.Value,3),2)

Example:

=LEFT(RIGHT("XXAB0",3),2)

It returns:

AB

Let me know if this can help you.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related