Viewing 15 posts - 16 through 30 (of 31 total)
ganteng1 (10/14/2014)
Can someone please help. See code below. Thanks
=IIF(Fields!Material.Value="Copper"
AND Fields!Measure.Value = "MASSDRY"
AND Fields!Category.Value...
October 30, 2014 at 6:25 pm
In SQL, you would want something along these lines. This is a function that uses does the same sort of thing.
CREATE FUNCTION [dbo].[sfn_SetEffectiveDate]
( @InputDateDATETIME )
RETURNS DATETIME
AS
BEGIN
-- We need to...
October 30, 2014 at 6:13 pm
sunnyplace (8/21/2010)
May 10, 2011 at 5:03 pm
danielle476 (12/30/2010)
I have a report where we alternate row colors using = IIf(RowNumber(Nothing) Mod 2 = 0, "Silver", "Transparent")
is there a way to also highlight a specific...
May 10, 2011 at 4:48 pm
sethmo38 (1/21/2011)
ID Start Time ...
May 10, 2011 at 4:41 pm
I am having a very similar problem. I'm attempting to use a Quirky update to populate the the "Previous" state of data, so I can identify changes over time....
April 28, 2011 at 9:54 pm
Quick and dirty stored procedure psuedocode:
scan
Insert into Pietable
"freespace" as category,
FreeSpaceMB as drivespace,
endscan
scan
Insert into...
March 11, 2010 at 10:57 am
Sorry 'bout that, I didn't complete my edits. They have the same dimensionality. The ONLY difference is whether or not I use the "calculated set" in the SUM,...
February 3, 2010 at 11:47 am
I found a method of doing it:
WITH
MEMBER [Measures].[DateSort] AS [Date Dimension].[DATE].CURRENTMEMBER.Properties('Key')
MEMBER [Measures].[ParameterValue] AS '[Date Dimension].[DATE].CURRENTMEMBER.UNIQUENAME'
SELECT NON EMPTY
{ [Measures].[DateSort]
, [Measures].[ParameterValue]
} ON COLUMNS,
NON EMPTY
ORDER(
...
February 3, 2010 at 11:15 am
I suppose that I could, except that I haven't done anything with MDX aside from feeding it straight into the reports. So how I'd go about doing what you...
January 28, 2010 at 10:14 am
The catch is, I'm want to sort on the DATES. There are no numbers associated with this data (in this instance), its simply the drop down for the user...
January 14, 2010 at 12:41 pm
I'm not familiar with ToNumber, but it sounds like it may be the same as FormatNumber. Take a look at that.
April 2, 2009 at 1:35 pm
keywestfl9 (4/1/2009)
if isnull(field1)or isnull(field2) then
0
else
ToNumber((field1 / field2) * 100)
==========
how do i rewrite it in the Field Expression in SSRS? Please assist me
IIF constructions in SSRS always evaluate...
April 2, 2009 at 11:26 am
Use the ReportItems collection...
=ReportItems!TextboxMyFirstGroupSum.value + ReportItems!TextboxMySecondGroupSum.Value + ReportItems!TextboxMyThirdGroupSum.value
March 9, 2009 at 5:49 pm
Viewing 15 posts - 16 through 30 (of 31 total)