Thanks to everyone for the help!
Here's what I did, just for reference.
In the on_click event of every label I had
lcText1 = "Labelname"
In the on_click event of the command button I had
If lcText1 = "Labelname1" Then
DoCmd.OpenForm "Form1", , , , acFormEdit
ElseIf lcText1 = "Labelname2" Then
DoCmd.OpenForm "Form2", , , , acFormAdd
ElseIf lcText1 = "Labelname3" Then
DoCmd.OpenForm "Form3", , , , acFormAdd
ElseIf lcText1 = "Labelname4" Then
DoCmd.OpenForm "Form2", , , , acFormEdit
ElseIf lcText1 = "Labelname5" Then
DoCmd.OpenForm "Form3", , , , acFormEdit
End
End If
End Sub
This works fine for me. I hope it is of some use to someone in the future.
Cheers,
Ben