I have a workflow that uses a multi-row formula to "copy down" values but I have a new data set that requires the values to "copy up". I've been playing around with the formula but can't quite get it to work.
Formula:
IIF(isnull([Field1]),[Row-1:Field1],[Field1])
Sample Data:
| Field1 | Desired Output |
| [null] | A |
| [null] | A |
| [null] | A |
| A | A |
| [null] | B |
| [null] | B |
| [null] | B |
| B | B |