Hi,
My scenario is in its basic terms:
if there are 4 rows as:
Jasdev
Jasdev Singh
Jasdev Singh Sachdeva
Jasdev Singh Sachdevaaaa
It should change all 4 of them to Jasdev Singh Sachdevaaaa. Even for the scenario
Logic I am trying to use for them is, if row 2 contains row 1 (complete string, if it is Jasdev R, it shouldnt work) then replace row 1 with row 2. The Expression in multi row formula I have used is created a new column checking and below:
IF CONTAINS([Row+1:Name],[Name])
THEN [Row+1:Name]
ELSE [Name]
ENDIF
Kindly provide some suggestions.