Viewing 15 posts - 61 through 75 (of 113 total)
I don't know the exact cause of this problem. But maybe following may help:
Just try this i had tried and my prob got solved..............
For Firefox
1. Open firefox and type in...
September 13, 2012 at 6:52 am
You have to put this expression into:
Textbox properties > color > select 'expression' > paste ex. and click ok.
September 13, 2012 at 5:15 am
It's more like this expression:
=iif(Fields!BRANCH_CODE.Value = MIN(Fields!BRANCH_CODE.Value, "DataSet1"), "Red", iif(Fields!BRANCH_CODE.Value = MAX(Fields!BRANCH_CODE.Value, "DataSet1"), "Green","Black"))
Steps
1) Select the desired textbox and press F4 to go to its properties section.
2) Click on the...
September 13, 2012 at 5:02 am
Use this instead:
select deliveryEntry.ID, sum(cost*(deliveryTank.grossVolume)) as Total
from deliveryEntry
inner join deliveryMapping on deliveryEntry.ID=deliveryMapping.deliveryID
inner join deliveryTank on deliveryMapping.ID=deliveryTank.deliveryID AND (deliveryTank.deliveryID=(select MAX(deliveryMapping.ID) from deliveryMapping where deliveryMapping.deliveryID=50))
inner join Tanks on deliveryEntry.simmonsPID=Tanks.Simmons_PanelID
and Tanks.Tanks_ID=deliveryTank.tankID
inner join costTag...
September 11, 2012 at 6:41 am
Right click on any column header and select Insert Column > Left / Right.
September 11, 2012 at 6:38 am
Then include only delivery_id in the select and group by clause.
September 11, 2012 at 6:26 am
Use the following expression in the textbox :
=LookupSet(Fields!PRODUCT_BRAND_CODE.Value, Fields!PRODUCT_BRAND_CODE.Value, Fields!PRODUCT_NUMBER.Value, "Product").Length
September 11, 2012 at 4:21 am
You can try following :
1)Go to properties section of the textbox by selecting the textbox and pressing F4.
2) Go to the Format section in properties.
3) Click the drop down...
September 11, 2012 at 3:31 am
You could add a calculated field on which you should group on.
You can use mid function in the report expression for the new field and extract only first 2 words...
September 10, 2012 at 12:39 am
Lowell (8/29/2012)
Are you sure about that?copy and paste it to SSMS...that stops right away with a syntax check, since the EXEC command cannot exist inside the parameter list.
To...
August 31, 2012 at 4:54 am
You don't have to use a SP. you can just replace following code:
SELECT value from dbo.Fn_tsp_orderhistory(EXEC STORED_PROC_NAME
('''+@c+''')
WITH
SELECT value from dbo.Fn_tsp_orderhistory( '%' + REPLACE( @C, '*',...
August 29, 2012 at 6:45 am
I think the only way you can achieve this by using Rank & Partition in a SQL query.
And then using it in the hidden expression.
For Ex. if(new_field = 1...
August 24, 2012 at 1:07 am
lcarrethers (8/16/2012)
Was this ever figured out? I having the same problem?
Please explain what are you trying to achieve here ?
And what exact error you are getting after you...
August 24, 2012 at 12:41 am
Viewing 15 posts - 61 through 75 (of 113 total)