Hi @kanishka271
You can use a similar approach as with the other topic that you raised.
With the Access features in the CE, you can use column/row “coordinates”. Note that it starts to count from zero so the offset is 1.
As such,
column("column3") + column(0,1) + " " + column(0,2)
Meaning the original value of column 3 + column 1 row 2 + space + column 1 row 3
column("column4") + column(1,1)
Meaning the original value of column 4 + column 2 row 2
fi you want to keep your data clean, you can use
if (column("column4") != null)
column("column4") + column(1,1)
else {
null
}
Adding a filter to just keep the first row.
Output:
Hope this helps!