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

if Excel Cell

Hello

I have this Excel File:

ABC
101.08.2016DataData
2DataData
302.08.2016DataData
4DataData

The Cell A2 needs to have the date from A1 and

the Cell A4 needs to have the date from A3. And so on.

I hope someone can help me with this problem!

Thank you!

1 Solution

Accepted Solutions
Frank_Hartmann
Master II
Master II

try like that in script:

if(isnull(A), peek('A', - 1), A) as A

Hope this helps

View solution in original post

4 Replies
Frank_Hartmann
Master II
Master II

try like that in script:

if(isnull(A), peek('A', - 1), A) as A

Hope this helps

Frank_Hartmann
Master II
Master II

Or try:

if((A)='', peek('A', - 1), A) as A

hope this helps

Anonymous
Not applicable

Hi Alexander,

This can be done while loading data. please find the below steps for the same

Step 1:  In load script, load  excel file. "Table Files..." -> Select the file and click next

Step 1.png

Step 2: Click on "Enable Transformation Step"

Step 2.png

Step 3: select "Fill" option., select the option according to your requirement and click ok

Step 3.png

Step 4: Click next and finish

Step 4.png

alexandermllr
Creator
Creator
Author

Thank you! 

Both answers worked perfectly!