Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,How to use peek/previous logic to this data?
Thanks in advance.
My source Data:
Requirement to show:
Hi Aretha,
Try:
NoConcatenate
Data1:
load
Row,
Month,
if(IsNull(Month), Peek(Month1),Month) as Month1,
ID,
Description
Resident Data;
DROP Table Data;
You can drop Month and maybe rename Month1.
cheers
Andrew
Please share excel file
Hi Aretha,
Try:
NoConcatenate
Data1:
load
Row,
Month,
if(IsNull(Month), Peek(Month1),Month) as Month1,
ID,
Description
Resident Data;
DROP Table Data;
You can drop Month and maybe rename Month1.
cheers
Andrew
Another script, similar to Andrew
Data:
LOAD RowNo() as Row,
If(Len(Trim(Month)) = 0, Peek('New_Month'), Month) as New_Month,
ID,
Description
FROM
[Sample Data.xlsx]
(ooxml, embedded labels, table is Data);