Help with Excel please
Solved/Closed
Related:
- Help with Excel please
- Excel marksheet - Guide
- Excel free download - Download - Spreadsheets
- Number to words in excel - Guide
- Kernel for excel - Download - Backup and recovery
- Excel date format dd.mm.yyyy - Guide
4 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Aug 10, 2010 at 02:35 PM
Aug 10, 2010 at 02:35 PM
You can use vlookup or match etc
Thanks for the reply, unfortunately the post does not reflect the issue as I had hoped, I have tried :
=IF (ISNS(Vlookup(A1{cell with the string to look for}, Table {a single Column with the strings to search in},1{Single Column}, False)), "", Vlookup(A1, Table,false))
This usually helps, but how can I set it to search a specific string and not a match from the table?
Again I appreciate the help.
=IF (ISNS(Vlookup(A1{cell with the string to look for}, Table {a single Column with the strings to search in},1{Single Column}, False)), "", Vlookup(A1, Table,false))
This usually helps, but how can I set it to search a specific string and not a match from the table?
Again I appreciate the help.
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Aug 11, 2010 at 06:57 AM
Aug 11, 2010 at 06:57 AM
I think for that you would need to use a combination of match and indirect. Match would give you the row number and then you can use indirect to get the value
=IF(ISERROR(MATCH("*" & A1 & "*", Sheet2!B:B,0)), "", INDIRECT("Sheet2!B" & MATCH("*" & A1 & "*", Sheet2!B:B,0))
I have not tested it, but I am sure you can make it work
=IF(ISERROR(MATCH("*" & A1 & "*", Sheet2!B:B,0)), "", INDIRECT("Sheet2!B" & MATCH("*" & A1 & "*", Sheet2!B:B,0))
I have not tested it, but I am sure you can make it work