Viewing 15 posts - 1 through 15 (of 183 total)
Anyone was able to resolve this? I have a similar issue?
October 18, 2016 at 2:03 pm
This helped...
CASE WHEN Week_No = (Select MAX(Week_No) FROM CTEfinal) THEN 'Week4'
WHEN Week_No = (Select MAX(Week_No)-1 FROM CTEfinal) THEN 'Week3'
...
August 26, 2016 at 8:41 am
I should have ben a bit specific. Here... Instead of directly renaming , Can we say , The max week number is week4 and then max - 1 is...
August 26, 2016 at 8:32 am
As mentioned
It could be /dev/Mywork/deailsbyWork
or /dev/MyTeam/deailsbyTeam
or /dev/MySubgroup/deailsbySubgroup
Outcome
Mywork
MyTeam
MySubgroup
May 26, 2016 at 2:34 pm
So if I work on Power BI desktop ? I will need SharePoint 2013 to publish the reports for internal use? As I do not want to publish it on...
May 9, 2016 at 1:19 pm
Guess I figured out.. An inner join helped
May 3, 2016 at 3:30 pm
If you are getting the total in a table then try adding a text box in a footer and reference the value in that table cell.
Example.
=Reportitems!Textbox6.value
April 20, 2016 at 8:41 am
Should typically work if its a date datatype.
April 14, 2016 at 12:17 pm
This helped me..
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())-n,0))
FROM (VALUES(0),(1),(2))x(n)
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0))
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0))
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())-1,0))
SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())-2,0))
February 24, 2016 at 9:47 am
Glad you pointed that first format did make a difference.
Thank you!
February 23, 2016 at 1:59 pm
Just past 3 months. I am not building a table
February 23, 2016 at 1:21 pm
Something like this SELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0)) .
But how to get for Dec and Nov?
February 23, 2016 at 1:07 pm
Viewing 15 posts - 1 through 15 (of 183 total)