Viewing 15 posts - 5,446 through 5,460 (of 9,643 total)
Then your textbox is not named textbox1. Check to see what it is named.
April 7, 2009 at 9:47 am
I think you may have posted in the wrong forum as this is a 2000 forum, but you should try this:
DECLARE @var XML
SET @var = '' -- '<test>test</test>'
SELECT @var.exist('/test')
IF...
April 7, 2009 at 9:46 am
You need to use the ReportItems collection like this:
=ReportItems.textbox1.Value + ReportItems.textbox2.Value
April 7, 2009 at 9:33 am
Thanks for posting the solution.
April 7, 2009 at 9:29 am
Because you are using the Format function you need to specify a user-defined format. Try checking out this article.
I think you want something like this:
=Iif(Fields!Data1.Value="String1",Format(Fields!Data2.Value,"#.###,###"),Format(Fields!Data2.Value,"#.###,##"))
April 7, 2009 at 9:29 am
I think this will work (please note how I supplied some test data):
DECLARE @inventory_history table(itm_code INT, tran_type VARCHAR(15), itm_qty INT, doc_date datetime)
DECLARE @date DATETIME
SET @date = '3/31/2009'
INSERT INTO @inventory_history (
itm_code,
tran_type,
itm_qty,
doc_date
)...
April 7, 2009 at 8:58 am
To my knowledge there are 2 ways to do this.
1. Use a configuration file to store the variable values and use the same configuration file for each package.
2. ...
April 7, 2009 at 8:46 am
I think this expression will do what you want, but, as always, there may be a better way, such as returning a grouping column in the dataset.
=IIF(RowNumber(Nothing) Mod 5 =...
April 7, 2009 at 8:28 am
If you used the default install you should not need the "$" at the end of the URL. Try http://localhost/reports
April 7, 2009 at 7:55 am
Steve Jones - Editor (4/6/2009)
Feel free to use the "report button" to let me know about misposted items. Also dups, I tend to close them out if...
April 6, 2009 at 6:01 pm
Chris Morris (4/6/2009)
It's one of those, Jack, but the requirements are so ambiguous it's kinda hard to tell 🙂
Exactly! I don't drink but posts like these could drive me...
April 6, 2009 at 2:45 pm
Chris Morris (4/6/2009)
DROP TABLE #Temp
CREATE TABLE #Temp (col1 CHAR(1), col2 CHAR(1), col3 CHAR(1), col4 CHAR(1), col5 CHAR(1))
INSERT INTO #Temp (col1, col2, col3,...
April 6, 2009 at 2:28 pm
Okay, I think I understand what is going on. The X locks are actually on different objects because they are Key-range locks on the index. The range is...
April 6, 2009 at 2:20 pm
Please don't qualify the results in the data I presented, just answer what your requirements require you to return based on the data provided. It seems you keep changing...
April 6, 2009 at 1:33 pm
Based on this data:
ID Col1 Col2 Col3 ...
April 6, 2009 at 12:42 pm
Viewing 15 posts - 5,446 through 5,460 (of 9,643 total)