Viewing 15 posts - 1 through 15 (of 55 total)
I'm back again. So my second SSRS instance bombed on me also. It must be a permissions issue because when I went back into SSRS Config Manager and added the...
October 18, 2018 at 1:24 pm
Everyone, thanks for your input. I tried the IIS solution, but unfortunately, that did not work for me. However, I did get it working and here's what I did.
October 18, 2018 at 11:07 am
Here's a bit of a backstory of what's going on.
We have AppX that uses Databasics (SQL) database and an Access database in the background.
Databasics decided to upgrade DB1...
March 8, 2018 at 7:30 am
Thanks all! Yeah, so all this is happening is in Access with Access tables.
I seen the After Insert event, but couldnt make sense of the steps after I...
March 7, 2018 at 12:19 pm
TheSQLGuru (1/5/2017)
DarthBurrito (1/5/2017)
Some of the reports require multi-select parameters. I'm currently using a function to...
January 5, 2017 at 9:28 am
Luis Cazares (7/12/2016)
Here are 2 alternatives. One is using NOT IN as in your original query, the other...
July 12, 2016 at 2:24 pm
sestell1 (5/26/2016)
Would this work?
SELECT
Row_ID, Serial_Table.Serial_Number + Sequence.Digit
FROM
Serial_Table
JOIN
(
SELECT
DIGIT
FROM
(VALUES (0), (1),(2),(3),(4),(5),(6),(7),(8),(9), (10)) Numbers(digit)
) Sequence
ON
Sequence.Digit <= Serial_Table.End_Serial_Number - Serial_table.Serial_Number
This worked perfectly. Thanks!
May 26, 2016 at 9:29 am
Since I already have the start serial number and end serial number on the same one record, which is SN=1 and END_SN =5, I want to create the four other...
May 26, 2016 at 9:04 am
Jack Corbett (12/2/2014)
The LOOKUP function is what popped into my head, but I'm not positive that this will work.
Thanks, I'll look into that.
For now as a work around,...
December 2, 2014 at 11:26 am
If I understand your question, I believe I've done this before.
I created one parameter that searches several columns.
All you have to do is use a lot of OR in your...
December 2, 2014 at 9:30 am
I finally figured it out and it was such a simple solution. Here's the expression I used.
In the detail cell:
=IIF(ISNOTHING(SUM(Count(Fields!RevCategory.Value))), 0, SUM(Count(Fields!RevCategory.Value)))
In the Fill section of the detail cell:
=IIF(ReportItems!RevCategory.Value =...
October 9, 2014 at 8:41 am
robert.gerald.taylor (10/8/2014)
Or are you saying that your grouping's expression is...
October 8, 2014 at 7:49 am
Just from the top of my head and without making an actual report, I'm thinking you should create a parent group and group it by fiscal year, yyyy-mm. Then you...
October 7, 2014 at 3:04 pm
I'm using this for a parameter drop down list for a report I'm creating. Instead of having the user select a Month and then a Year in two parameters, I...
October 23, 2013 at 11:24 am
Rick, did consider the data-driven subscription, but we have Standard installed, so doesn't look like that will be an option. The version of SQL was not my call. This was...
May 13, 2013 at 8:11 am
Viewing 15 posts - 1 through 15 (of 55 total)