Autopopulate cells based on a list in another worksheet

Dallie

New Member
Joined
Apr 12, 2018
Messages
13
Hi all,

First time poster, long time user.

Could somebody please help me with a macro that I would be far out of my depth with, and would help me save a plenty of writing long words in the future. I deal with a lot of plant samples from day to day and about 10,0000 need to be entered over the next couple of years into a spreadsheet document

What I need is a running worksheet macro that searches a list in another worksheet when i input certain species names and then automatically enters a name in the next column. The macro needs to automatically propagate the family name when the species name has been entered.

I'm thinking for this to work: when a species name (column A "Sheet1") has been entered it needs to automatically compare the first word of Column A "Sheet1" against the list in column B of "Sheet2" and if the Genus name is matches the first word in the species name then it automatically enters the family name in column B "Sheet1".

The only other step that would need to be introduced is a quality assurance step that if the first word of the species name does not match any Genus in "Sheet2" then the cell should populate with a check of the species name (e.g. Not a valid species name).

Here is a tiny example of what I need below:

"Sheet1" "Sheet2"
Column AColumn BColumn AColumn B
Species nameAuto_propagate Family nameFamily NameGenus
Prunus americanaRosaceaeMalus
Citrus aurantiumRosaceaePrunus
Prnus domesticusRosaceaeRubus
Citrus grandisRutaceaeCitrus

<tbody>
</tbody>

Once macro has been made:
"Sheet1" "Sheet2"
Column AColumn BColumn AColumn B
Species nameAuto_propagate Family nameFamily NameGenus
Prunus americanaRosaceaeRosaceaeMalus
Citrus aurantiumRutaceaeRosaceaePrunus
Prnus domesticusNot a valid species nameRosaceaeRubus
Citrus grandisRutaceaeRutaceaeCitrus

<tbody>
</tbody>


Sorry for the lack of code but I don't even know where to start with this one.

Any help is greatly appreciated.

Thanks Dallie
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi & welcome to MrExcel
How about
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

   Dim Fnd As Range
   
   If Target.CountLarge > 1 Then Exit Sub
   If Target.Column <> 1 Then Exit Sub
Application.EnableEvents = False
   With Sheets("Sheet2").Range("B2", Sheets("Sheet2").Range("B" & Rows.count).End(xlUp))
      Set Fnd = .find(Split(Target.Value, " ")(0), , , xlWhole, , , False, , False)
      If Not Fnd Is Nothing Then
         Target.Offset(, 1).Value = Fnd.Offset(, -1).Value
      Else
         Target.Offset(, 1).Value = "Not a valid species name"
      End If
   End With
Application.EnableEvents = True
End Sub
This needs to go in the sheet module for "Sheet1"
 
Last edited:
Upvote 0
Oh my, how rude of me.. I forgot to thank you!

Thank you very much Fluff it works perfectly, great work!
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0
Hello again Fluff,

I have started using this in a couple of different sheets (and it is great thank you again!) but I was thinking about introducing this to an issues register that I use with my Co-workers. If I were to do this I would need to bug proof the code so that whatever they do they cannot break the code. So I am wondering on your thoughts of how I would bug proof this minor issue that I have with the macro (or really me breaking the macro) so that I could add this into the code?

Currently the macro is fine until I remove any one of the entries in column A (sheet 1) so that the cell is blank. When I do this I get this following issue "Run-time error '9'; Subscript out of range" error and it breaks the code unit I exit completely out of all excel workbooks and start them up again.

Do you have any thoughts on how to add a failsafe to the code so that if anyone removes text from one of the cells in column A (sheet 1) that the code will exit the sub rather than break it?

Your thoughts are greatly appreciated!!
 
Upvote 0
Add the line in red
Code:
If Target.Column <> 1 Then Exit Sub
[COLOR=#ff0000]If Len(Target.Value) = 0 Then Exit Sub[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,214,952
Messages
6,122,457
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top