cancel
Showing results for 
Search instead for 
Did you mean: 

Restrict Running sum in Webi

Former Member
0 Kudos

Hallo Experts,

I have following requirement. I am creating a webi report on BEx query which customer exits for YTD Calculation and Structure for Month

I need to show the data like this when User Selects JUN 20XX for the prompt.

MonthDeliveriesRunningSum

JAN

11
FEB23
MAR36
APR410
MAY515
JUN621
JUL
AUG
SEP
OCT
NOV
DEC

But when I use =Runningsum(Deliveries)  I am getting following result

MonthDeliveriesRunningSum

JAN

11
FEB23
MAR36
APR410
MAY515
JUN621
JUL21
AUG21
SEP21
OCT21
NOV21
DEC21

Can anyone suggest me solution or work around to restrict the values for RunningSum only for the values visible.

THanks

Indra

View Entire Topic
former_member190895
Active Participant
0 Kudos

Try Below Formula

=If  Not(IsNull([Value])) Then Runningsum(Deliveries)