Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
544 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Creating functions which return Boolean values is a useful way to structure code which validates data.
There are many conditions to test to ensure data is valid before accepting it. Using functions helps in terms of organising the code required to do this.
You can click here to download the file for this part of the lesson.
You can click here to download a file containing the sample code.
Extract and open the workbook linked to in the Files Needed section above. You'll find a version of the system which allows you to add reviews of films to a list:
Clicking the button adds the data in column B to the table starting in column D.
In the VBE you'll find a subroutine called Add_To_List which is called when you click the button on the worksheet:
The subroutine uses multiple If statements to check that the data is valid before allowing it to be added to the list.
We'd like to replace the individual If statements with a set of functions which will determine if the data is valid.
For the first example, we'll create a function which checks if a value has been entered in a particular cell. Start by creating a function called Value_Missing in Module1:
Create a simple function outline as shown here.
The function will need to know which cell to check the value of. Define a Range parameter called CellToTest:
Define a parameter as shown here.
We'd like the function to return True or False depending on whether the cell is empty or not. Set the return type of the function to Boolean:
Set the return type to Boolean.
We'd like the function to return True if the cell is empty and False if not. Write an If statement which checks if the value of the CellToTest is an empty string and returns the correct response:
Construct an If statement to return the correct response.
If this is all we want the function to do, we can return the correct response in a more concise way like so:
Value_Missing = (CellToTest.Value = "")
We're using an If statement as we want the function to do more work later!
We can already use the Value_Missing function to validate the film details by calling it from the Add_To_List subroutine. Find and select the code shown highlighted below:
Find and select the If statement shown here in the Add_To_List subroutine.
Replace the highlighted code with an If statement which calls the Value_Missing function:
Call the Value_Missing function and open a set of parentheses.
Pass a reference to cell B2 into the CellToTest parameter of the function:
Refer to the cell which should contain the film title and then close the parentheses.
Complete the If statement by telling the subroutine to exit if the condition returns True:
You can write the entire If statement on a single line as shown here.
You can now return to Excel and test that the code works. Delete the value in cell B2 and click the button on the worksheet:
If cell B2 doesn't contain a value the subroutine will end without copying any data.
We can reuse the Value_Missing function to test if the user has entered a value into cells B3 and B4. Return to the VBE and add two more calls to the Value_Missing function below the first:
You can check that the user has filled in each of the film details by adding more If statements to the Add_To_List subroutine.
You can test that the code works by returning to Excel and deleting any of the values in cells B2, B3 and B4:
If any of the three values are missing, the film won't be added to the list.
You should also check that the code works when a complete set of details have been added:
When all details have been filled in, clicking the button adds the new film to the list.
From a user's perspective, it would be useful to see some information about why the film is not being added to the list. We can add more code to the function to indicate to the user what has gone wrong. We'll do three things if the user fails to add a value to a cell:
Return to the Value_Missing function and add three instructions to the If statement:
Add three lines of code to the If statement as shown here.
We should also make sure that any changes are reversed if the user has entered a value into the cell. Add two lines to the Else clause of the If statement:
Add two instructions to the Else clause as shown here.
You can test that the code works by returning to Excel and attempting to add a film with missing values:
It's now more obvious what the user has done wrong.
Check that the code works when all the film details have been entered:
When every detail has been entered, the formatting is cleared from the cells and the film is added to the list.
To practise returning a Boolean value from a function:
Function Date_Invalid()
End Function
Function Date_Invalid(DateCell As Range)
End Function
Function Date_Invalid(DateCell As Range) As Boolean
End Function
Function Date_Invalid(DateCell As Range) As Boolean
If Not IsDate(DateCell.Value) Then
End If
End Function
Function Date_Invalid(DateCell As Range) As Boolean
If Not IsDate(DateCell.Value) Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Not a date"
End If
End Function
Function Date_Invalid(DateCell As Range) As Boolean
If Not IsDate(DateCell.Value) Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Not a date"
Date_Invalid = True
End If
End Function
Function Date_Invalid(DateCell As Range) As Boolean
If Not IsDate(DateCell.Value) Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Not a date"
Date_Invalid = True
ElseIf DateCell.Value > Date Then
End If
End Function
Function Date_Invalid(DateCell As Range) As Boolean
If Not IsDate(DateCell.Value) Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Not a date"
Date_Invalid = True
ElseIf DateCell.Value > Date Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Date in the future"
End If
End Function
Function Date_Invalid(DateCell As Range) As Boolean
If Not IsDate(DateCell.Value) Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Not a date"
Date_Invalid = True
ElseIf DateCell.Value > Date Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Date in the future"
Date_Invalid = True
End If
End Function
Function Date_Invalid(DateCell As Range) As Boolean
If Not IsDate(DateCell.Value) Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Not a date"
Date_Invalid = True
ElseIf DateCell.Value > Date Then
DateCell.Interior.Color = rgbPink
DateCell.Select
Range("A5").Value = "Date in the future"
Date_Invalid = True
Else
DateCell.Interior.ColorIndex = xlNone
Range("A5").ClearContents
Date_Invalid = False
End If
End Function
Select the two If statements shown highlighted here.
Call the Date_Invalid function and open a set of parentheses.
Refer to cell B3 and then close the parentheses.
Complete the If statement as shown here.
Check that you see an appropriate indicator of the error when you enter an invalid date.
The formatting should be reset and the film added to the list when you enter a valid date and click the button.
Function Score_Invalid(ScoreCell As Range) As Boolean
If Not IsNumeric(ScoreCell.Value) Then
ScoreCell.Interior.Color = rgbPink
ScoreCell.Select
Range("A5").Value = "Not a number"
Score_Invalid = True
ElseIf ScoreCell.Value < 0 Or _
ScoreCell.Value > 10 Then
ScoreCell.Interior.Color = rgbPink
ScoreCell.Select
Range("A5").Value = "Score out of range"
Score_Invalid = True
Else
ScoreCell.Interior.ColorIndex = xlNone
Range("A5").ClearContents
Score_Invalid = False
End If
End Function
You can replace the code shown highlighted here.
Call the function, pass it a reference to cell B4, and exit from the subroutine if it returns True.
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.