Dear all,
I am having difficulties with an, what i think, easy macro. I made multiple macro's to change the filter(date) of a pivot. All these pivots are based on different databases. Sometimes when i fill in a date that the pivots need to filter on, it gives me an 1004 error. This is due to that the date is not present in that database and therefore the pivot can't filter on it. This is no problem to me. What i do think is a problem is as follows:
I made a macro to run these multiple macro's but when one gives an error the macro does not continue to call up the macro's after it. The macro i use is:
Sub Run4Batch()
Call rt4Batch_Micro
Call rt4Batch_CC
Call rt4Batch_CRQS
Call rt4Batch_BLOK
End Sub
So when for example Call rt4Batch_CRQS gives an error, the macro does not Call rt4Batch_BLOK. Is there a way to make the macro still execute the ones after the error?
Many thanks in advance!!
I am having difficulties with an, what i think, easy macro. I made multiple macro's to change the filter(date) of a pivot. All these pivots are based on different databases. Sometimes when i fill in a date that the pivots need to filter on, it gives me an 1004 error. This is due to that the date is not present in that database and therefore the pivot can't filter on it. This is no problem to me. What i do think is a problem is as follows:
I made a macro to run these multiple macro's but when one gives an error the macro does not continue to call up the macro's after it. The macro i use is:
Sub Run4Batch()
Call rt4Batch_Micro
Call rt4Batch_CC
Call rt4Batch_CRQS
Call rt4Batch_BLOK
End Sub
So when for example Call rt4Batch_CRQS gives an error, the macro does not Call rt4Batch_BLOK. Is there a way to make the macro still execute the ones after the error?
Many thanks in advance!!