Viewing 15 posts - 286 through 300 (of 1,957 total)
and when you hover your cursor over the "float" column, does it say float?
I'm wondering if you have a case of mistaken identity - are you using two part naming...
March 25, 2015 at 1:59 pm
March 25, 2015 at 1:54 pm
What value do you see if you preview the dataset in SSRS?
March 23, 2015 at 5:32 pm
remove the cast as a string, and using the decimal type, display the value in a textbox using the "format" property value "N5", just to see what SSRS really thinks...
March 23, 2015 at 5:19 pm
Ok, let me rephrase it - why are you casting a number to a string? (ignore the unicode for now)
March 23, 2015 at 5:00 pm
Can I ask why you are casting your decimal to a unicode string?
March 23, 2015 at 4:50 pm
I am not a DBA, however I sort of perform some DBA-like functions and where I do, I use Subversion to store database objects, for three main reasons (any VCS...
March 21, 2015 at 6:09 pm
Matt Miller (#4) (3/19/2015)
March 19, 2015 at 6:40 pm
To get the whole row to colour:
=Iif(
Max(
Iif( Fields!OwnerType.Value = "Fixed", 1, 0 )
, "Row_Group_Name"
...
March 18, 2015 at 5:27 pm
Oh yes, that makes sense because we are using the running value... No ideas right now but will think about it...
March 18, 2015 at 8:58 am
You need to apply an expression to the Row Group background colour.
=Iif(
RunningValue(
Iif( Fields!OwnerType.Value = "Fixed", 1, 0 )
...
March 17, 2015 at 5:26 pm
thomashohner (3/16/2015)
March 16, 2015 at 5:15 pm
Yes, it is two transactions, each updating two tables.
So, it is (two tables being updated within the same transaction) X 2
In this situation, updating the tables in the same order...
March 16, 2015 at 5:14 pm
SQListic (3/16/2015)
Example: actual data is like 6222007
,11301998 in end date column the following...
March 16, 2015 at 5:11 pm
thomashohner (3/16/2015)
So I started researching the Convert and Bitwise. Very interesting stuff. I also ran into another issue. Not all row colors go good with black text.
So I used...
March 16, 2015 at 5:03 pm
Viewing 15 posts - 286 through 300 (of 1,957 total)