Hi,
I have a code with some macros where each of them extract a different data, and be like:
%extract_basex();
%extract_basey();
%extract_basez();
But, sometimes one of my macros get an error and the code stops. What could I do to for if one macro get an error the code goes to the next one?
For example, I want this:
%extract_basex(); --> Execute
%extract_basey(); --> Abend, the code stop this macro and goes to next
%extract_basez(); --> Execute