A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
The two lines at the very top of the code need to be changed to read like this:
Const dvCellAddress = "$B$4" ' change as needed to the address of the data validated cell
Const myDefault = "Apple" ' change as required to other text or number
Also here's a link to instructions on how to get the code into the proper place in your workbook (into the worksheet's code module) with at least one graphic:
http://www.contextures.com/xlvba01.html#Worksheet
Be sure you follow the instructions in the section for (my underline added)
Copy Excel VBA Code to a Worksheet Module
That page also has additional instructions for inserting code in other areas, so you might want to bookmark that page for future use.
No problem, ask for all the help you need.
NOTE: If when you click the [View Code] option, if you see the words
Option Explicit
Then put all of the code I provided just below those words. If those words aren't there, don't worry about - depends on certain settings in Excel as to whether they are there by default or not.