Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
aveeeeeee7en
Specialist III
Specialist III

New Field Requirement

Hi All

I want to get the Required field row from Closing MOB Field Values:

Average of Closing MOB in New Field

MonthClosing MOBRequired Field by using CLOSING MOB Field values
Jan10261,026
Feb10251,026
Mar10271,026
Apr10321,028
May10401,030
Jun10341,031
Aug10151,028
Sep10161,026
Nov10051,023
Dec10021,021

Regards

Aviral

11 Replies
tresesco
MVP
MVP

Your script solution is here:

Load
Month,
[Closing MOB],
RangeSum([Closing MOB],Peek('CummClosingMOB')) as CummClosingMOB,
RangeSum([Closing MOB],Peek('CummClosingMOB'))/RowNo() as ExpClosingMob

;

Load * Inline [
Month,"Closing MOB"
Jan,1026
Feb,1025
Mar,1027
Apr,1032
May,1040
Jun,1034
Aug,1015
Sep,1016
Nov,1005
Dec,1002

];

Drop field CummClosingMOB;

aveeeeeee7en
Specialist III
Specialist III
Author

Hi Tresesco Sir

Your Logic is Perfectly Running.

Your Logics are always Amazing.

One more help I needed from you.

Could you please help me to find the ClosingMoB from Script Level.

I am doing it in Front end which I don't need.

See the Attachment