Search and Replace macro for microsoft excel
Solved/Closed
Doyle1010
-
May 11, 2010 at 01:01 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 11, 2010 at 10:20 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 11, 2010 at 10:20 PM
Related:
- Search and Replace macro for microsoft excel
- Microsoft excel download - Download - Spreadsheets
- Spell number in excel without macro - Guide
- Yahoo search history - Guide
- Safe search settings - Guide
- Kernel for excel - Download - Backup and recovery
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
May 11, 2010 at 04:30 PM
May 11, 2010 at 04:30 PM
You can use Lookup to do that
example
=VLOOKUP(A2,[Book1.xls]Sheet1!$A:$T,5, false)
example
=VLOOKUP(A2,[Book1.xls]Sheet1!$A:$T,5, false)
May 11, 2010 at 05:03 PM
May 11, 2010 at 10:20 PM
then you can delete original b, c and d
you would be using some thing like this
=IF(ISERROR(VLOOKUP(A2,[Book1.xls]Sheet1!$A:$D,2, false)) , A2,VLOOKUP(A2,[Book1.xls]Sheet1!$A:$D,2, false))
which basically says if the value is not found in book2, then keep original value else get the updated value