Viewing 15 posts - 211 through 225 (of 431 total)
I added the fields onto the blank report because I needed a "free form" type of report. There are other text boxes with just plan text, kind of like labels....
July 15, 2016 at 9:19 am
Good points. You're right. I'll make the change
July 14, 2016 at 7:22 am
Thank you all for your responses.
July 14, 2016 at 7:15 am
I read Jeff's article. Way over my head. My data is relatively small so, the fnSplitString function works pretty quick.
July 14, 2016 at 7:13 am
The goal is to be able to count each string element to get a total for each.
July 14, 2016 at 4:52 am
This is some test data. Not all rows will have a delimited string value.
create table #Test
(
QuerySetID int,
QueryNumberID int,
QueryValue varchar(100)
)
insert into #Test(QuerySetID, QueryNumberID, QueryValue) values(7,15,'{Taxi Voucher}')
insert into #Test(QuerySetID, QueryNumberID, QueryValue) values(7,17,'{Counseling}')
insert...
July 14, 2016 at 4:38 am
Here's the function. I got it from your site. I think the blog author's last name is Patel.
CREATE FUNCTION [dbo].[fnSplitString]
(
@string NVARCHAR(MAX),
...
July 14, 2016 at 4:13 am
Wonderful. Just what I wanted.
Thanx.
April 26, 2016 at 5:36 am
...........and insert the other "set" of fields in there?
April 26, 2016 at 5:34 am
I tried that but, I have 12 columns to group on and it doesn't look good. I was thinking of a subreport but, I don't know how to get the...
April 26, 2016 at 5:31 am
Thanx. I didn't know you could pivot with SSRS but, am willing to learn.
April 11, 2016 at 9:39 am
OK. Now for some more knowledge transfer..................this stored procedure containing the dynamic sql is used for an SSRS report. The dataset isn't pulling the fields because of issues with SSRS....
April 11, 2016 at 9:27 am
Viewing 15 posts - 211 through 225 (of 431 total)