Hello _ i need help from this community.
I am working with a excel file and need issue i am facing is in Yellow. Desire state is in Green.
In row C5 the full name should be Balance & Compensation Information. However information is getting cut to a different row C6.
Same for C7- C8: full name should be Account Maintenance W/ Chk Return. Return is on the next cell below
Same for C15 - C16: full name is General Account Services Updated
was hoping to use Multi-Row Formula to solve for it. What can i use to reach my desire highlighted in Green? Which is copying Information and any of the words in Red and append them at the end of previous non blank cell.
IF !ISNULL([Service Description]) and ISNULL([AFM Code]) and ISNULL([XYZ Code])
Then [Service Description] + " " + [Row-1:Service Description]
Else [Service Description]
ENDIF
Solved! Go to Solution.
Here's the formula you should use that will do the trick.
IF Contains([Service Description],"…")
Then Trim(REGEX_Replace([Service Description], "\…\.*","")) + " " + Trim([Row+1:Service Description])
Else Trim([Service Description])
ENDIF
If this works for you, please accept this as a solution.
@The_Rad_Valentina , Thank you for the below. This is definitely the idea but not quite. I need to clarify few points.
Thank you so much and kind regards,
Hassim
@HassimDiallo Try this formula in the MultiRow tool
IF isnull([Row+1:AFM Code]) AND isnull([Row+1:XYZ Code]) AND isnull([Row+1:Unit Price])
Then Trim([Service Description]) + " " + Trim([Row+1:Service Description])
Else Trim([Service Description])
ENDIF
@The_Rad_Valentina Thank you! I am reviewing the proposed and will revert.