Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

TOS : in Tmap component from excel delimeter, how to get previous cell value in case of null values ?

Hi all,

By using Tmap component, I transfer a table from excel file to a csv file with some transformations.

However, in my origin excl file, I have this case, in my first column i have some null values:

A | Value1 | Value 2

B | Value 3 | Value 4

 | Value 5 | Value 6

C | Value 7 | Value 8

 

In my output file (csv file), i want to get :

A;Value1;Value 2

B;Value 3;Value 4

B;Value 5;Value 6

C;Value 7;Value 8

 

How to do ? Get previous row value in case of it's null

 

Thank you

Labels (2)
1 Solution

Accepted Solutions
TRF
Champion II
Champion II

tMemorizeRows component is what you are looking for.

You can also do the same with tMap local variables (a little bit more tricky).

View solution in original post

3 Replies
TRF
Champion II
Champion II

tMemorizeRows component is what you are looking for.

You can also do the same with tMap local variables (a little bit more tricky).

Anonymous
Not applicable
Author

thank you

TRF
Champion II
Champion II

You're welcome