Is there a MS Report writer expert here?

Signed-In Members Don't See This Ad

arw01

Member
Joined
Oct 24, 2008
Messages
387
Location
Spokane, WA
I hate MS VS report writer compared to Crystal reports.

I want to do some running totals based on if a particular field has one value or the other.

Is there a nice simple tutorial someplace on running sub-totals based on a value in the detail?
 
Signed-In Members Don't See This Ad
You might consider setting it up in MS Access. The built-in wizards make a lot of the tasks fairly easy. You can also write programs for Access using VBA, which is a variation of Visual Basic.

Tomas
 
What exactly do you mean - for example do you want to total of all the positive values in a column versus the total of all the values in the column?

Say the column had the following:

1234.56
1234.56
-200.00
1234.56
======
3703.68 (versus 3503.68 if you include the negative number)

PM me some additional information and i'll see if I can help.
 
Will PM, but I basically want to count how many A things happen vs B things and have a total that I can print out in the group header.

Visual Studio Reports don't seem to have a natural running total function like crystal does.
 
With some help on the ms forum I now have a total running on the detail lines with:

=sum(iif(Fields!objet.Value = "Estimate Given",1,0)) working. Have asked how to get that to print into the header/footer of the group so I get the total where I need it, and not on the detail lines.
 
Back
Top Bottom