Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
bharani8
Creator III
Creator III

Grand total with Absolute value

Hi Team - I have issue in Populating "Shipment %" because Values which are populated in "Shipment Delta" are Absolute values. What output i need from the below screen shot is.. For Grandtotal (Bolded in last row), for "Shipment %" it should calculate 3870/1164425 which is 0.33%.. "Shipment Delta"(OARS Shipment Qty - ODW Shipment Qty) are Absolute values. 3870 is Sum of all the Rows (Not Expression Total). Now how do we get this to 0.33% ?

@sunny_talwar  Hope u have different approach to get this done.. Counting on u!

Expressions used for below 4 columns are:

OARS Ship Qty : Sum(GROSS_SHIP_QT)   Grand Total: Expression Total (Total Mode)

ODW Ship Qty : Sum([L4 Gross Shipment MS Quantity])   Grand Total: Expression Total (Total Mode)

Shipment Delta : fabs(Sum(GROSS_SHIP_QT) - Sum([L4 Gross Shipment MS Quantity]))   Grand Total: Sum of Rows(Total Mode)

Shipment % : fabs(Sum(GROSS_SHIP_QT) - Sum([L4 Gross Shipment MS Quantity]))/sum(GROSS_SHIP_QT)   Grand Total: Expression Total (Total Mode)

Capture.JPG

Regards

Bharani

Labels (2)
1 Solution

Accepted Solutions
sunny_talwar

Not sure what the chart dimension/s are, but assuming they are A, B, & C.... try this

Sum(Aggr(
   fabs(Sum(GROSS_SHIP_QT) - Sum([L4 Gross Shipment MS Quantity]))
, A, B, C))
/
Sum(Aggr(
   Sum(GROSS_SHIP_QT)
, A, B, C))

View solution in original post

2 Replies
sunny_talwar

Not sure what the chart dimension/s are, but assuming they are A, B, & C.... try this

Sum(Aggr(
   fabs(Sum(GROSS_SHIP_QT) - Sum([L4 Gross Shipment MS Quantity]))
, A, B, C))
/
Sum(Aggr(
   Sum(GROSS_SHIP_QT)
, A, B, C))
bharani8
Creator III
Creator III
Author

Worked Perfectly!!! U r a Star!! Tks for helping on this!! 🙂