For our last macro before moving on to our genetic drift simulation we will learn how to use If...then...else statements to make decisions based on data values. This macro will also use variables that we declare and initialize, and will only interact with the worksheet to record the final results at the end.

We are going to write a macro that produces the counts of adult moths that either chose clean air or EA, depending on whether they were trained to avoid EA as caterpillars. This will reproduce the observed pivot table counts in Table 1, which is how we will know we did it right.

Step 1. Open the Excel file, and open the macro editor.

The first thing you need to do is to open your macros for editing - select "Macros" → "View macros". In the Macro window select "BootstrapOdds" and select "Edit" - this will open the macro editor.

The final version of the macro will look like this - the steps needed to write it are explained below, but the full program is here for your reference:

Table program

Note the indenting - as you enter your code use tabs to indent the code to match this example. The reason for this is that it makes the code much more readable - several parts of the program, such as the For...Next loop and the If...then...else statements have beginning and ending lines of code, with commands that are executed in the middle. If you indent the lines between the beginning and end statements it's much clearer which commands are within the loops and if...then...else commands.

Step 2. Start a new subroutine.

We will write a new macro below the "End Sub" line from your bootstrapped odds ratio confidence interval macro from last time. To begin a new macro enter the line:

Sub Table()

You will see a horizontal line will appear separating this new macro you are creating and the End Sub that ends the BootstrapOdds() macro above.

Add a few blank lines and type:

End Sub

Now you will write your macro in between the Sub and End Sub lines.

Step 3. Define variables.

The pseudo code describing how the macro will work is:

We will be keeping track of total number of adults that chose clean air, and total number of adults that chose EA air, so we'll need a variable for each of these. Type the lines:

Dim adClean as Integer
Dim adEA as Integer

The Dim command is short for "dimension", which is how VB defines variables. The name of the variables are adClean and adEA, and they are both type Integer - the only data type we can assign into them are integer numbers (if we tried to assign a floating point number to an integer variable the decimal would be dropped, with unpredictable results, and a text value would cause the program to crash).

Additionally we will count up how many of the adults who chose clean air were trained to avoid EA, and how many of the adults who chose EA air were trained to avoid EA. We need two additional variables for these to sums:

Dim adClean_trEA As Integer
Dim adEA_trEA As integer

Note that we're using a naming convention that will help you remember what each variable is - the first part of the name is the adult response, and "ad" is used to indicate this. The second part of the name after the underscore indicates how the caterpillars were trained, and "tr" is used to indicate this. The two variables that record total numbers of adult responses of each type have only the "ad" but not the "tr" part in their names. Using variable names that are self-explanatory is very helpful in helping you use them properly in the programs you write.

There are actually two additional possible combinations - adults that chose clean air that were controls, and the adults that chose EA air that were controls. We don't need to count these, though, because we have the total adults who chose clean air (adClean), and the number of those that were trained to avoid EA (adClean_trEA), so we can get the adults who chose clean air but were int the control group as adClean - adClean_trEA. Same for adults that chose EA that were in the control group, which is adEA - adEA_trEA.

Step 4. Initialize variables

Now that you have six variables, which should all be set to 0 to start. Make a blank line after your last Dim statement and then type the lines:

adClean = 0
adEA = 0
adClean_trEA = 0
adEA_trEA = 0

The equal sign is how we assign values to variables. Assignment works from right to left - the 0 on the right side of the = is assigned as the value of the variable on the left side.

Step 5. Write the For...Next loop

After your last initialization, enter a blank line, and then type:

For i = 2 to 88

The data are in rows 2 to 88, so this sets us up to work through all of the data. Make a couple of blank lines, and then type:

Next i

Step 6. Write the code that does the counting

Within the loop you just made, enter the lines (note that the lines starting with an apostrophe are comments from me to you that explain what the code is doing. You do not need to write the comments into your program):

'First, start an If...then that will take the first value in column C and ask if it is equal to "Chose clean air"

If Range("C" & i).Value = "Chose clean air" Then

'Next, write the lines that will be executed if this comparison comes back as TRUE. First, you will want to add 1 to the adClean variable.

    adClean = adClean + 1

'Next, we need another If...then to decide whether the caterpillar was trained to avoid EA. This second If...then is nested inside of the first, so it will only be executed on adults that chose clean air

If Range("B" & i).Value = "Trained to avoid EA" Then

'If this second If statement is True, such that the animal was trained to avoid EA, we need to add 1 to the adClean_trEA variable

    adClean_trEA = AdClean_trEA + 1

' We can now complete the second If... by entering the command End If - each If has to have an End If to close it, just like For.. needs a Next, and Sub needs and End Sub

End If

'This End If only ends the second If... that only applies to moths that chose clean air. The next line continues the first If.. , and we will now decide what to do if we find the animal did not choose clean air.

'There are only two choices the adults could make, so if the the If... is not "Chose clean air" it must be "Chose EA air" - we can use an Else for commands that are to be executed when the adult chose EA air. First we want to add a 1 to the adEA count:

Else
    adEA = adEA + 1

'Now that we are have established that we are dealing with adults that chose EA, we need to ask again if they were trained as caterpillars to avoid EA, and if so we add 1 to the adEA_trEA count

If Range("B" & i).Value = "Trained to avoid EA" Then
    adEA_trEA = adEA_trEA + 1
End If

'We have finished counting for the adults that chose clean air or chose EA, so we need to close the first If...then with a matching End If

End If

Step 7. Report the counts to the worksheet.

We now have counts for all adults that chose clean air or EA air, and counts of how many of each were trained to avoid EA air. We will now use these to record the counts into the MothLearning worksheet. We have been using pivot tables with adult choice as the row labels, and caterpillar training as the columns, so to lay out your results in the same way type the lines:

Range("I18") = adClean - adClean_trEA
Range("J18") = adClean_trEA
Range("K18") = adClean
Range("I19") = adEA - adEA_trEA
Range("J19") = adEA_trEA
Range("K19") = adEA

We should also add some labeling:

Range("I17") = "Control"
Range("J17") = "Trained to avoid EA"
Range("K17") = "Total"
Range("H17") = "Adult choices:"
Range("H18") = "Chose clean air"
Range("H19") = "Chose EA air"

And some column totals:

Range("I20") = Range("I18").Value + Range("I19").Value
Range("J20") = Range("J18").Value + Range("J19").Value
Range("K20") = Range("K18").Value + Range("K19").Value

Step 8. Assign a keyboard combination, and run your program.

Switch to your worksheet, and select "Macros" → "View macros". You should see "Table" listed as one of the macros. Select it, and click "Options", and then assign the key combination of CTRL+SHIFT+T.

If you close the macros settings, and hit CTRL+SHIFT+T you should see a table of counts for adult choices (rows) by treatments (columns) that matches the table of observed counts above.

Assignment

Save your work and upload...once you're done with this part you have all three parts of this assignment done.