Hi all, I'm looking for a solution for this situation: a column where the correct value is present but in a totally random position like this example
Date or it could be Date
Null Null
Null Q4 2020
Q4 2020 Null
Null Null
Null Q4 2020
Null
Null
Q4 2020
The desired output should be:
Date
Q4 2020
Q4 2020
Q4 2020
Q4 2020
Q4 2020
If I use iif(isnull([Date]),[Row-1:Date],[Date]) it works except for first record that remains blank