Hello there,
Need Help from all of Excel Guru here to simplify my work in excel.
I have a raw data like this
<tbody>
</tbody>
I want to utilized the "region" Column to grouping the city data by adding information in region so the result will be like this
<tbody>
</tbody>
Is there possible to use VBA to automatically replace "Others" in the "region" Column with value such as example above?
( Jakarta & Bekasi will be "JaBek" in "region" Column, Bogor & Bandung will be "JaBar" in "region " Column, and Medan will be "SumUt" in "region" Column)
If possible how to make the VBA code? cause I am a dummies in VBA and Excel
Thanks in advance for your Help
Regards,
CKW
Need Help from all of Excel Guru here to simplify my work in excel.
I have a raw data like this
Name | Address | city | age | sex | region |
Ditu | aaaaaa | Jakarta | 12 | m | Others |
Asia | bbbbbb | Medan | 14 | f | Others |
Goson | cccccc | Bogor | 16 | m | Others |
Istama | ddddd | Bandung | 18 | f | Others |
Jaya | eeeee | Bekasi | 20 | m | Others |
<tbody>
</tbody>
I want to utilized the "region" Column to grouping the city data by adding information in region so the result will be like this
Name | Address | city | age | sex | region |
Ditu | aaaaaa | Jakarta | 12 | m | JaBek |
Asia | bbbbbb | Medan | 14 | f | SumUt |
Goson | cccccc | Bogor | 16 | m | JaBar |
Istama | dddddd | Bandung | 18 | f | JaBar |
Jaya | eeeeee | Bekasi | 20 | m | JaBek |
<tbody>
</tbody>
Is there possible to use VBA to automatically replace "Others" in the "region" Column with value such as example above?
( Jakarta & Bekasi will be "JaBek" in "region" Column, Bogor & Bandung will be "JaBar" in "region " Column, and Medan will be "SumUt" in "region" Column)
If possible how to make the VBA code? cause I am a dummies in VBA and Excel
Thanks in advance for your Help
Regards,
CKW