I am trying to copy the first row value and paste it to whole column using below formula. However, for some reason it's not working. Can someone help me? Thank you.
if [RecordID] = 1
then [Book date]
else [Row-1:Book date]
endif
Solved! Go to Solution.
Hi @RD32XU,
Just a simple change to your formula will also work:
if [RecordID] = 1
then [Book date]
else [Row-1:maxdate] // use the name of the column that Multi-Row is creating
endif
Hi @RD32XU
Another variation is to use a summary tool to identify the First record value, then append to ALL...then clean up.
Workflow attached.
Thanks everyone, works fine. Both solution above able to get the output I want which is to copy first raw value to entire column.
if [RecordID] = 1
then [Field1]
else [Row-1:maxdate]
endif
Thank you for this.
Happy to help : ) @RD32XU
Cheers and have a nice day!