Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. 'Call subroutines
  2. Call Tuition(curTuition, intCredHrs, strStat)
  3.  
  4. 'Display subroutines
  5. Range("f" & intRow) = curTuition
  6.  
  7. If strStat = "GRADUATE" Then
  8. If intCredHrs < 18 Then
  9. curTuition = 335 * intCredHrs
  10. Else
  11. curTuition = 6500
  12. End If
  13.  
  14. ElseIf strStat = "UNDERGRADUATE" Then
  15. curTuition = 550 * intCredHrs
  16. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement