Anonymous
in reply to:
Anonymous
06-21-2016
08:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
06-21-2016
08:05 AM
Try
glass_labour_set = (iProperties.Value("Custom", "GLASS_SET")/60)*glass_labour_rate
Catch
End TryHere's an example of the Try Catch for one of your custom iProps.
Downside is you'd have to place each of your custom iprops in its own one.
This is another option:
On Error Resume Next
Fairly self explanatory, if it hits an error, like a missing custom iProp it will move onto the next line of code.