Author |
Topic |
bencantello
Starting Member
10 Posts |
Posted - 2008-04-02 : 17:14:38
|
hey there I have a series of finacial reports. the girls that work on them want color and the boss wants them to print in black and white. the color back grounds print grayscale so I would like to add a link of some sort that changed the background to transparent when they want to print a report. |
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2008-04-02 : 17:31:53
|
do the formatting in your front end._______________________________________________Causing trouble since 1980blog: http://weblogs.sqlteam.com/mladenpSSMS Add-in that does a few things: www.ssmstoolspack.com |
 |
|
bencantello
Starting Member
10 Posts |
Posted - 2008-04-02 : 17:40:09
|
i'm sorry but i am really new to sql and am not sure what you mean by "front end" |
 |
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2008-04-02 : 17:43:40
|
ok.. first tell us where would you like to change the formatting?sql server is a server to which clients connect. a client is a front end.a client can be your asp.net or windows forms application, SQL Server management studio, sql profiler, etc...so what is your client on which you want to change the formatting?_______________________________________________Causing trouble since 1980blog: http://weblogs.sqlteam.com/mladenpSSMS Add-in that does a few things: www.ssmstoolspack.com |
 |
|
bencantello
Starting Member
10 Posts |
Posted - 2008-04-02 : 17:52:28
|
hey there I have a series of finacial reports. the girls that work on them want color and the boss wants them to print in black and white. the color back grounds print grayscale so I would like to add a link of some sort that changed the background to transparent when they want to print a report. I am working in SQL server business intelligenceDoes this answer your question?? |
 |
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2008-04-02 : 17:57:35
|
so you're reffering to reporting services?_______________________________________________Causing trouble since 1980blog: http://weblogs.sqlteam.com/mladenpSSMS Add-in that does a few things: www.ssmstoolspack.com |
 |
|
bencantello
Starting Member
10 Posts |
Posted - 2008-04-02 : 18:00:11
|
Yeah |
 |
|
spirit1
Cybernetic Yak Master
11752 Posts |
|
bencantello
Starting Member
10 Posts |
Posted - 2008-04-02 : 18:17:37
|
thanks |
 |
|
jhermiz
3564 Posts |
Posted - 2008-04-03 : 10:14:17
|
quote: Originally posted by bencantello thanks
This is very very simple. Just create a parameter in the report called say Color?When the user Selects 'Y' it shows the report in color, else it doesnt. Then in each text box in your report you put conditional formatting so that the color does an if=IIF(Parameters!Color.Value = 'Y', "Red", "Black")Thats itJonWeblog -- [url]http://weblogs.sqlteam.com/jhermiz[/url] |
 |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-04-03 : 10:39:42
|
quote: Originally posted by jhermiz
quote: Originally posted by bencantello thanks
This is very very simple. Just create a parameter in the report called say Color?When the user Selects 'Y' it shows the report in color, else it doesnt. Then in each text box in your report you put conditional formatting so that the color does an if=IIF(Parameters!Color.Value = "Y", "Red", "Black")Thats itJonWeblog -- [url]http://weblogs.sqlteam.com/jhermiz[/url]
small typo |
 |
|
|