Viewing 15 posts - 91 through 105 (of 144 total)
when this is in there, it screws things up and the query brings back no results:
WHERE DR.customernumber IS NULL
when I take that out, the query brings in all the numbers...
February 14, 2006 at 9:32 pm
This below brings back no results which is not possible, it should be brining back some accounts. I also tried a top 1 because I basically just want one instance...
February 14, 2006 at 2:36 pm
jeff, but I don't want a left join...I don't want ALL customers, only the ones who are not in the DR table AND then in my list...all others should not...
February 14, 2006 at 2:17 pm
Whitespace shouldn't matter in a sql query.
also, my query runs the where clause, just that it's picking up all accounts. I want it to insert only those customers who are...
February 14, 2006 at 1:53 pm
oh, no, what i need is one sum returned..the value by the rollup...there should only be one value, not a whole line
February 9, 2006 at 9:16 am
Ken could you help me form mine with your suggestion?
February 9, 2006 at 8:54 am
I tried:
Select (cast(FGoal as numeric(30,2)) / FeeSched) * 100 AS gt
from DR WHERE branch='00002'
group by CustomerName,
CustomerNumber,
FGoal,
FeeSched
order by...
February 9, 2006 at 8:08 am
Tried that already. When I tried this:
SUM(Fields!GrossGoal1.Value,"CustomerNumber_Grp")
it tells me that I cannot reference a field that is not in the footer scope
See my other 2 posts (read...
February 9, 2006 at 7:38 am
Ok, for now I tried this but get errors:
CASE WHEN Len(c.FeeSchedule) < 3 then
CONVERT(int, c.feeSchedule)
ELSE
CASE WHEN (Select Count(*) FROM FeeScheduleDetails fd INNER...
February 2, 2006 at 3:17 pm
Viewing 15 posts - 91 through 105 (of 144 total)