Viewing 15 posts - 121 through 135 (of 183 total)
Sorry "Old Hand"
But this just messes things up, you may need to explain a little more in-depth, if you don,t mind
July 21, 2008 at 7:50 am
The data type is datetime, and this is the full copy of the cold:
SELECTCONVERT(varchar(11), T_OrderHeader.OrderDate, 106) AS [Order Date], T_OrderHeader.OrderID, T_OrderHeader.CustomerID, T_OrderHeader.ShipTitle,
T_OrderHeader.ShipForename, T_OrderHeader.ShipSurname, T_OrderHeader.OrderTotal,
T_OrderHeader.OrderStatusID, T_Customers.ExpiryDate
FROMT_OrderHeader INNER JOIN ...
July 21, 2008 at 6:40 am
Thanks Hari
Somehow it didnt return any records, but I used the following code:
WHERET_OrderHeader.OrderDate >= DATEADD(day, DATEDIFF(day, 0, DATEADD(day, -7,
GETDATE())), 0)
AND T_OrderHeader.OrderDate < DATEADD(day, DATEDIFF(day, 0, GETDATE()), 0)
it returned records, but...
July 21, 2008 at 6:18 am
Hello
To be able to have a group total, you will need to select the table area of your report, right click on the group that needs to have a...
July 21, 2008 at 4:17 am
Hi All
In case you come across this topic, I have found a solution which was pretty straight forward
You can also have a look at the following link:
http://msdn.microsoft.com/en-us/library/aa337401.aspx
Cheers
July 21, 2008 at 3:36 am
Hi All
In case you come across this topic, I have found a solution which was pretty straight forward :ermm:
You can also have a look at the following link:
http://msdn.microsoft.com/en-us/library/aa337401.aspx
Cheers
July 20, 2008 at 7:15 am
Hi All
I used the query this way and i got an error message saying incorrect syntax near Price on line 4, can anyone help?
SELECT ParentProductClassID , CatalogueID,...
July 18, 2008 at 3:41 am
Thanks Nigel, your explanation made A LOT of sense. Am creating a report model for a department to pull reports from where end users can use the report model to...
July 16, 2008 at 5:54 am
I have another problem with the order by syntax, in my query the order date is in DESC order, but when i preview it in SSRS, it appears the in...
July 15, 2008 at 6:57 am
Thanks Hari
You saved my day, better to have it done this way than using all that CAST and CONVERT syntax in the query
July 15, 2008 at 3:30 am
The query actually adds the the £ symbol in front of the figures, and the data type format of the column is money
July 14, 2008 at 3:49 am
Fixed!!!!!!!!!!
I forgot to set the correct parameter value:blush:
July 7, 2008 at 9:21 am
Viewing 15 posts - 121 through 135 (of 183 total)