This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
append numeric value to repeated names a column, I tried with multi-row formula but it is not working as expected,Please help me to resolve this issue
Input
Name | |
abc | abc@a.com |
abc | abc1@a.com |
bcd | bcd@a.com |
def | def@a.com |
ghi | ghi@a.com |
abc | abc3@a.com |
jkl | jkl@a.com |
mno | mno@a.com |
pqr | pqr@a.com |
bcd | bcd@a.com |
abc | abc@a.com |
def | def@a.com |
Output should be:
Name | value | |
abc | abc@a.com | 1 |
abc | abc1@a.com | 2 |
bcd | bcd@a.com | 1 |
def | def@a.com | 1 |
ghi | ghi@a.com | 1 |
abc | abc3@a.com | 3 |
jkl | jkl@a.com | 1 |
mno | mno@a.com | 1 |
pqr | pqr@a.com | 1 |
bcd | bcd@a.com | 2 |
abc | abc@a.com | 4 |
def | def@a.com | 2 |
It is working as expected..thanks for your quick response.
You welcome and good luck!!!