Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
marcel_olmo
Partner Ambassador
Partner Ambassador

How to repeat previous numeric value in loading script

Hi guys,

I'm trying to read a public database of invoicing per companies, and some of them doesn't have a numeric value, instead of this, there's a word "big" which means they have big invoicing.

In order to analyze this, I'd like to read all the rows and if a rows contains a non numeric value, read the previous numeric value it was found.

Easy example :

 

CompanyBilling
A10000
B9500
CBig
DBig
EBig
F9000
G

Big

And I'd like to get :

 

CompanyBilling
A10000
B9500
C9500
D9500
E9500
F9000
G9000

How can I get this?

Regards, Marcel.

1 Solution

Accepted Solutions
nsetty
Partner - Creator II
Partner - Creator II

DataTmp:

Load * Inline

[

Company,Billing

A, 10000

B, 9500

C, Big

D, Big

E, Big

F, 9000

G, Big

];

FinalTbl:

LOAD

        [Company],

    Billing,

     If(trim(Billing)='Big', Peek('NewValue'), Billing) as NewValue

   Resident DataTmp;

 

drop table DataTmp;

View solution in original post

4 Replies
nsetty
Partner - Creator II
Partner - Creator II

DataTmp:

Load * Inline

[

Company,Billing

A, 10000

B, 9500

C, Big

D, Big

E, Big

F, 9000

G, Big

];

FinalTbl:

LOAD

        [Company],

    Billing,

     If(trim(Billing)='Big', Peek('NewValue'), Billing) as NewValue

   Resident DataTmp;

 

drop table DataTmp;

vishsaggi
Champion III
Champion III

Nagesh you can also use this If condition in your Inline Load too like

DataTmp:

Load *, If(trim(Billing)='Big', Peek('NewBilling'), Billing) as NewBilling

Inline

[

Company,Billing

A, 10000

B, 9500

C, Big

D, Big

E, Big

F, 9000

G, Big

];

tulabandula
Partner - Contributor III
Partner - Contributor III

Peek function would resolve your scenario

peek( 'field', 0, 'Tab1' )

It gives based on your optional parameter to get the previous record to read which is equivalent to previous(field).

marcel_olmo
Partner Ambassador
Partner Ambassador
Author

Thanks guys! Thay was it. Thanks for all your suggestions.

Regards, Marcel.