Hi All,
There is a minor hiccup that I am facing in trying to create a logic. I would be glad if anyone can help me on this. The requirement is such that, I am sure I need Multi-Row Formula to fix it, but somehow i am unable to nail the formula.
Let us say we have three columns as, Name, Month, Gender.
Name | Month | Gender |
Tom | July | |
Tom | August | M |
Tom | September | |
Lucy | May | |
Lucy | June | |
Lucy | July | F |
Lucy | August | |
Lucy | September |
In the data shown above, i would like to fill the Gender column for each Name if there is an entry in any single row, similar to one shown below.
Name | Month | Gender |
Tom | July | M |
Tom | August | M |
Tom | September | M |
Lucy | May | F |
Lucy | June | F |
Lucy | July | F |
Lucy | August | F |
Lucy | September | F |
Thanks
Solved! Go to Solution.
Thanks BenMoss for the reply. This worked perfectly fine. I did notsort the data before applying the formula using MultiRow Formula, which is the key.
That's great to hear @Zaid!
Would you mind marking the post as a solution just so this post is prioritised when people are searching for similar issues.
Ben
You can simply configure a formula tool for the column GENDER and using the below expression can solve the problem.
IF [Name] = "Tom" THEN "M" ELSEIF [Name]="Lucy" THEN "F" ELSE [Gender] ENDIF