Viewing 15 posts - 4,126 through 4,140 (of 5,111 total)
Don't use an expression to change the format of a field on SSRS, change the the format property of the cell. Using FORMAT converts the field to a string.
March 10, 2017 at 3:02 am
Andrew doesn't have an entry in your sample data, is that intended? This exact code won't work if so (you should be able to amend it easily enough), but using...
March 9, 2017 at 10:15 am
I'm not sure what the relevance of the above is. If you want the number "3" to be displayed as "0003" you would use the format "0000", not "####". The...
March 9, 2017 at 10:06 am
Do you mean you want to Display "Presentation Layer Loaded", "SuccessfullyLoaded" and "Total Scrape" first, and then the rest? What is your defining order for these, is it "Presentation Layer...
March 9, 2017 at 9:57 am
Can you provide some Sample data and expected output please? See the link in my signature for details on how to supply this.
March 9, 2017 at 9:44 am
What do you mean by "not showing up"? If a cell has a value in the formula bar, but not in the cell, it's because the value of the formula...
March 9, 2017 at 9:27 am
Using Substring:USE DevTestDB;
GO
CREATE TABLE #Source (String varchar(255));
GO
INSERT INTO #Source
VALUES
('model://MONEY/GBPCHF.3Y.BG0L.125'),
('model://INDEX/IMAREX.PANAMAX'),
('model://INDEX_New/JIBAR.Z2AR.12M1/LAST'),
('model://FXG_LBMA/EU.ME.LBMA.A3G_USD.FXG/PRICE');
GO
SELECT *
FROM #Source;
March 9, 2017 at 7:18 am
Perhaps I am missing something, but the position of both CMDTY and SRV_Name are in the same position in your example, so the following will always work:SELECT...
March 9, 2017 at 6:05 am
Personally, I think it really varies on the data. There are some things where I will use NULL, where other times I will use a "Magic Number", or something else....
March 3, 2017 at 10:00 am
Could you provide Sample data, along with the expected output please. We have no idea what the problem is from your above post, as we don't have access to your...
March 3, 2017 at 9:45 am
I also would advise against using GOTO statements, you would be better off using TRY...CATCH syntax.
March 3, 2017 at 9:33 am
March 3, 2017 at 9:30 am
Normally the ACE drivers are installed when you install Excel, do you have that installed on the machine you are using? If you have an older version of Excel installed,...
March 3, 2017 at 8:59 am
I assume that the path you have selected for your Excel Connection Manager is valid? Also, do you have the JET/ACE drivers installed?
March 3, 2017 at 8:44 am
Personally, if this is the case, I would embed the SSRS report and CCTV page into another web page. Then you can display both pages.
I also don't know...
March 3, 2017 at 7:55 am
Viewing 15 posts - 4,126 through 4,140 (of 5,111 total)