Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Function parse_reports(reports, conditions)
  2. matched_report = -1
  3. For each r In reports
  4. If check_condition(r, conditions) Then
  5. matched_report = r
  6. Exit For
  7. End If
  8. Next
  9. If (matched_report == -1) Then
  10. parse_reports
  11. Else
  12. parse_reports = get_report_id(matched_report)
  13. End If
  14. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement