I am new to development and am receiving the error "Expression Expected" when I attempt to compile the code below. What am I doing wrong?
Public Class Form1
Private Sub btnCompute_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCompute.Click
Dim Occupation As String = CStr(txtOccupation.Text)
Dim Bill As Double = CDbl(txtBill.Text)
Dim Tip As Double = CDbl(txtTip.Text)
lstOutput.Text = Bill * (1 + if (Tip<1,Tip,Tip/100))
End Sub
End Class