Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 Analysis Server and Reporting Services (2008)
 SSRS REPORT TEXT BOX Properties

Author  Topic 

niha.736
Starting Member

4 Posts

Posted - 2012-10-29 : 04:32:55
Hi , currently in my reports, i have 3 types of columns.
1. sales 989999
2.sales % 98
3.count 400000

here i need to get the values as
if the value is <999999 then it should be like 9999.99, if it is >999999 it should be same.
so what could be the expression for this?

TR
Niharika


sunitabeck
Master Smack Fu Yak Hacker

5155 Posts

Posted - 2012-10-29 : 07:06:59
Use an expression like this for format:
=IIF(Fields!Sales!Value > 999999,"###","###.00")
Go to Top of Page
   

- Advertisement -