Viewing 8 posts - 1 through 8 (of 8 total)
I figured it out. I added a case expression in my sql and then added it to my query in SSRS.
(case when c.desc2 like '%exchange trade%' then 'ETF 13F'...
November 14, 2014 at 5:41 pm
Great. This works. Now I have the issue of how to sort. I tried sorting within the category group properties using A to Z. Is there...
November 3, 2014 at 1:50 pm
Here's how I got this to work...
Select isnull(AAA,0) + isnull(BBB,0) + isnull(CCC,0) as Original
from MY Table
Thanks for your help.
October 20, 2014 at 3:16 pm
This doesn't seem to be working.
What I have is 3 columns and each have numeric numbers. I need to sum them up into one new column called amount. ...
October 17, 2014 at 11:38 pm
I'm not sure how to write the query. Being that I'm a beginner with SQL I need some help. I tried using my table and I'm getting an...
October 9, 2014 at 2:37 pm
Ok, this will work, but I have 6,479 rows and it will increase. Do I do the Union ALL Select 6,479 times?
October 9, 2014 at 2:04 pm
Hi KL25, In the example you provided above, is there a way to also pull in the dimensional table names on the same query?
Thanks,
January 7, 2014 at 9:51 am
Thanks for your reply.
I ended up going with the following select statment and it works well. It gives me all the dimension keys for all the fact tables.
SELECT t.name...
January 6, 2014 at 2:28 pm
Viewing 8 posts - 1 through 8 (of 8 total)