I've tried to setup a nested if statement with no results. Any help is much appreciated. Here is how it works:
If Me.txtTBASS is < 44.5, than Me.txtTBASSpts = 0
If Me.txtTBASS is >= 44.5 And <52, than Me.txtTBASSpts = 40
If Me.txtTBASS is >= 52 And <60, than Me.txtTBASSpts = 70
If Me.txtTBASS is >= 60 And <68, than Me.txtTBASSpts = 135
If Me.txtTBASS is >= 68 And <76, than Me.txtTBASSpts = 205
If Me.txtTBASS is >= 76, than Me.txtTBASSpts = 270
This example doesn't fit the syntax, but I wanted the logic to be apparent. Can someone please help out with my first nested if statement. Thanks.
If Me.txtTBASS is < 44.5, than Me.txtTBASSpts = 0
If Me.txtTBASS is >= 44.5 And <52, than Me.txtTBASSpts = 40
If Me.txtTBASS is >= 52 And <60, than Me.txtTBASSpts = 70
If Me.txtTBASS is >= 60 And <68, than Me.txtTBASSpts = 135
If Me.txtTBASS is >= 68 And <76, than Me.txtTBASSpts = 205
If Me.txtTBASS is >= 76, than Me.txtTBASSpts = 270
This example doesn't fit the syntax, but I wanted the logic to be apparent. Can someone please help out with my first nested if statement. Thanks.