Hi all, I have a problem where I want to fill the null value with data from before and after the row. I tried to use a multi-row formula, but it can only be before or after. Is there any solution for this?
Input:
Desirable Output:
Hi, @NadiaMazlan25
IF IsEmpty([Name]) && [Row-2:Name] = [Row-1:Name] THEN [Row-1:Name] ELSEIF IsEmpty([Name]) && !IsEmpty([Row-1:Name]) && !IsEmpty([Row+1:Name]) THEN [Row+1:Name] ELSE [Name] ENDIF
Update Existing Field with:
Hi @flying008
I tried the formula, but I noticed the value for 'Company D' is replaced by 'Company E'
Thank you. It works perfectly. For an additional question, what if there are 2 null columns above it? how to solve it?
Well , there is a full dynamic resolution for you , if you get your want, please mark it as a solution and give a like for more share.
Replace(REGEX_Replace([Name], '((?<=,)(?:<,)+([[:alpha:]\s]+),(?:<,)+)', '$2$1'), '<', '')