Viewing 15 posts - 571 through 585 (of 2,278 total)
You can add
& VbCRLF &
to add a carriage return/line feed to your expression.
April 9, 2012 at 7:07 am
This pattern will work in SQL when you are only dealing with a single column of data.
USE AdventureWorks
GO
DECLARE @listStr VARCHAR(MAX)
SELECT @listStr = COALESCE(@listStr+',' ,'') + Name
FROM Production.Product
SELECT @listStr
GO
April 9, 2012 at 7:01 am
I never tried to use Not Like in an SSRS before, but I don't see any clear way to do it. I checked expressions, filters, etc. and there is...
April 9, 2012 at 6:57 am
Ray K (4/9/2012)
Brandie Tarvin (4/6/2012)
Chicken!wings
Buffalo
April 9, 2012 at 6:47 am
If I understand your requirments, you have an invoice header and detail and you want to display both on a report.
I would query the header and detail data in a...
April 5, 2012 at 2:23 pm
Is the textbox you are using a part of the report that groups the detail that you are trying to hide or make visible? The error would indicated that...
April 5, 2012 at 11:55 am
Had to read a bit to figure it out, learned something. Thanks.
April 5, 2012 at 7:28 am
So if I understand correctly, my query returns 11 employees twice, one each with a Y and one each with an N?
If my query did not return the 11 employees...
April 4, 2012 at 10:50 am
I wrote a blog about this exact problem. I hope this helps:
April 4, 2012 at 7:26 am
You have a Yes/No parameter in your main report? Why don't you just use that to feed your second report instead of making the user choose Yes?
April 4, 2012 at 7:21 am
I think you could probably use one report. Add a group by your parameter and then put a page break between the groups. The page break should simulate...
April 4, 2012 at 7:18 am
Using SWITCH would be easier than using multiple nested IIF. A switch is a series of boolean tests and return values that will return the first value where the...
April 4, 2012 at 7:15 am
Viewing 15 posts - 571 through 585 (of 2,278 total)