Viewing 14 posts - 16 through 29 (of 29 total)
Thank you very much! I will try this right away. If it works, I totally owe you a beer :exclamationmark:
December 6, 2013 at 12:31 pm
Here is a month by month approach, but I need to have the best way to "loop" through a given set of six prior months to a month range that...
December 5, 2013 at 7:59 am
FYI - here is the better query (grouping handles properly) for a single month:
DECLARE @StartDate DateTime;
DECLARE @EndDate DateTime;
Set @Startdate = '10/01/2013';
Set @EndDate = '10/31/2013';
SELECT distinct CUSTNMBR,MONTH(DocDate) AS Mth,YEAR(DocDate) AS Yr,
COUNT(ROWID)...
December 5, 2013 at 7:41 am
BTW - ignore my first query, I made some grouping mistakes and the numbers were way off :).
However, this time I am simply giving the DDL statement and the long...
December 4, 2013 at 9:23 am
Sounds great!
I'll take a few moments today and get that together.
December 4, 2013 at 7:31 am
Yes, it would appear the URL limitations of SharePoint Integration are the cause of the above error.
I was hoping to jump around it since I can use the paths to...
November 21, 2013 at 8:21 am
I have been getting the following error when moving From SharePoint Integrated mode Back To Native mode with both machines on 2008 R2;
Can anyone tell me why?
I am trying to...
November 20, 2013 at 4:12 pm
Did you ever resolve your issues? Will it work on 2008 R2? both my environs are 2008 R2 and I need to migrate from Integrated mode back to...
November 1, 2013 at 9:42 am
Thank you:
jhood 36885 (6/7/2013)
November 1, 2013 at 9:19 am
I have the same problem, because we are moving our SharePoint to the cloud and Integrated Mode will not work in the MS Cloud.
Now I need to migrate hundreds of...
November 1, 2013 at 8:58 am
Thank you for this script, it was one of the final pieces to my having to run a sub on the 3rd business day of every month.
For anyone...
October 31, 2013 at 12:49 pm
Please ignore this topic; I typed before thinking too deeply after an couple of frustrating hours of searching. Need to delete it, but don't know how or am not...
October 24, 2013 at 1:56 pm
Update and answer:
Update:
I was missing several .Value items and chose to use dateinterval.{day,month,year} instead of "m" or "d";
as well, instead of just returning an integer to plug into a data...
October 1, 2013 at 1:05 pm
Update: I am getting the following error now
Warning1[rsRuntimeErrorInExpression] The Value expression for the field ‘LYTD_EndDate’ contains an error: Argument 'DateValue' cannot be converted to type 'Date'.
October 1, 2013 at 12:41 pm
Viewing 14 posts - 16 through 29 (of 29 total)