December 2, 2009 at 9:29 am
Hi,
I have an expression in reporting services which will concatenate some text a date field and currency value.
It does work but I do not know how to fomat the currency value within the expression so that it shows the £ sign and formats the value to 2 decimal places.
Expression is as follows
=" Your account Balance is "+Fields!Balance.Value.Tostring
December 2, 2009 at 8:05 pm
I can't believe that no one has answered this for you yet. I'd do it but I can't even spell SSIS. 😉 Maybe this response will act as the "bump" to get what seems to be a simple question answered.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 2, 2009 at 9:04 pm
Always use & symbol to concatenate two values
To round off
=Round(Fields!Test.Value,2)
OR
=Format(Fields!Test.Value,"#.##")
December 3, 2009 at 2:58 am
Yes this does work but how do I add the £ sign in front of the value.
="Your account balance is "&" "& format(round(fields!test.Value,2),"#,##")
December 3, 2009 at 3:32 am
I think I have just answered it myself 😉 . just code the £ sign in front of the field
December 3, 2009 at 8:16 am
😉
--Jeff Moden
Change is inevitable... Change for the better is not.
December 3, 2009 at 9:36 am
I forgot about the dates, how do I format the date in Day monthname and year format?
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply