cancel
Showing results for 
Search instead for 
Did you mean: 

How to display subtotals a line with the last record in every group

former_member280812
Active Participant
0 Kudos

Hi Experts,

I have my report created. My report consist of 2 groups namely: Classification(1st Group) and Category(2nd Group) and Qty column for the summation of the Category Group. Now I want to display the summation of the Classification Group a line with the last record in the Category Group.

See the Image Below.

Regards,

Eric

Accepted Solutions (1)

Accepted Solutions (1)

former_member280812
Active Participant
0 Kudos

Hi Abhilash,

Thanks for your reply.

I already solved my problem by creating two formula.

  1. @RunningTotal -> This will increment in every record within the group.
  2. @SummationOfEveryGroup -> This is the subtotals of every group.

Method:

Right click the @RunningTotal formula field then in the formula button suppress and i use this code:

IF @RunningTotal <> @SummationOfEveryGroup THEN True ELSE False

Regards,

Eric.

Answers (1)

Answers (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Eric,

Right-click the summary for the Classification Group > Select Format Field > Common tab > Click the formula button Suppress and use this code:

Next({Classification Group}) = {Classification Group}

-Abhilash