Hi guys,

Please see this code:
Sub GenerateOutbound()

    Call Merge_CSV_DHL_OUT
    Call Merge_XLS_FEDEX_OUT
    Call Merge_XLS_KN_OUT
    Call Merge_XLS_PANALPINA_OUT
    Call Merge_XLS_Speedlink_OUT
    Call Merge_CSV_TNT_Express_OUT
    Call Merge_CSV_TNT_France_OUT
    Call Merge_CSV_UPS_OUT
    Call JoinFiles
        
End Sub
So this is verry simple code which runs several macros after eachother.
Now it could be that one of these runs into error (ligit) because there is no data in the folder they are for.
Then of course the macro will crash.
But what I want is that it then just continious to the next macro.

What would be the best and cleanest way to adjust this code to do so?
Thanks!