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.
    
        | 
                
                    | 
                            
                                | Author | Topic |  
                                    | Blessed1978Yak Posting Veteran
 
 
                                        97 Posts | 
                                            
                                            |  Posted - 2014-07-28 : 18:34:41 
 |  
                                            | i would like to concatenate two parameters i have into one column so i can make it my column headerin SSRS 2012so i have an expression like Customer Report:" &"   " & parameterone.value " &"   " & parametertwo.value " &please advise |  |  
                                    | tkizerAlmighty SQL Goddess
 
 
                                    38200 Posts | 
                                        
                                          |  Posted - 2014-07-28 : 18:38:27 
 |  
                                          | parameterone.value & " " & parametertwo.valueTara KizerSQL Server MVP since 2007http://weblogs.sqlteam.com/tarad/ |  
                                          |  |  |  
                                    | Blessed1978Yak Posting Veteran
 
 
                                    97 Posts | 
                                        
                                          |  Posted - 2014-07-28 : 19:49:05 
 |  
                                          | I need to include the string  Customer REport:    Along with the 2 parameters |  
                                          |  |  |  
                                    | tkizerAlmighty SQL Goddess
 
 
                                    38200 Posts | 
                                        
                                          |  Posted - 2014-07-28 : 19:51:39 
 |  
                                          | "Customer Report: " & parameterone.value & " " & parametertwo.valueTara KizerSQL Server MVP since 2007http://weblogs.sqlteam.com/tarad/ |  
                                          |  |  |  
                                |  |  |  |