Hello
I want to define macro with 12 arguments (12 months in structure YYMM).
Let's say that the macro is defined by:
%Macro RRR(YYMM1,YYMM2,YYMM3,YYMM4,YYMM5,YYMM6,YYMM7,YYMM8,YYMM9,YYMM10,YYMM11,YYMM12);
And I want to run the macro with following arguments:
%RRR(2502,2501,2412,2411,2410,2409,2408,2407,2406,2405,2404,2403)
%RRR(2501,2412,2411,2410,2409,2408,2407,2406,2405,2404,2403,2402)
%RRR(2412,2411,2410,2409,2408,2407,2406,2405,2404,2403,2402,2401)
%RRR(2411,2410,2409,2408,2407,2406,2405,2404,2403,2402,2401,2312)
%RRR(2410,2409,2408,2407,2406,2405,2404,2403,2402,2401,2312,2311)
%RRR(2409,2408,2407,2406,2405,2404,2403,2402,2401,2312,2311,2310)
%RRR(2408,2407,2406,2405,2404,2403,2402,2401,2312,2311,2310,2309)
%RRR(2407,2406,2405,2404,2403,2402,2401,2312,2311,2310,2309,2308)
%RRR(2406,2405,2404,2403,2402,2401,2312,2311,2310,2309,2308,2307)
%RRR(2405,2404,2403,2402,2401,2312,2311,2310,2309,2308,2307,2306)
%RRR(2404,2403,2402,2401,2312,2311,2310,2309,2308,2307,2306,2305)
%RRR(2403,2402,2401,2312,2311,2310,2309,2308,2307,2306,2305,2304)
%RRR(2402,2401,2312,2311,2310,2309,2308,2307,2306,2305,2304,2303)
%RRR(2401,2312,2311,2310,2309,2308,2307,2306,2305,2304,2303,2302)
%RRR(2312,2311,2310,2309,2308,2307,2306,2305,2304,2303,2302,2301)
%RRR(2311,2310,2309,2308,2307,2306,2305,2304,2303,2302,2301,2212)
%RRR(2310,2309,2308,2307,2306,2305,2304,2303,2302,2301,2212,2211)
%RRR(2309,2308,2307,2306,2305,2304,2303,2302,2301,2212,2211,2210)
%RRR(2308,2307,2306,2305,2304,2303,2302,2301,2212,2211,2210,2209)
%RRR(2307,2306,2305,2304,2303,2302,2301,2212,2211,2210,2209,2208)
%RRR(2306,2305,2304,2303,2302,2301,2212,2211,2210,2209,2208,2207)
%RRR(2305,2304,2303,2302,2301,2212,2211,2210,2209,2208,2207,2206)
%RRR(2304,2303,2302,2301,2212,2211,2210,2209,2208,2207,2206,2205)
%RRR(2303,2302,2301,2212,2211,2210,2209,2208,2207,2206,2205,2204)
%RRR(2302,2301,2212,2211,2210,2209,2208,2207,2206,2205,2204,2203)
%RRR(2301,2212,2211,2210,2209,2208,2207,2206,2205,2204,2203,2202)
%RRR(2212,2211,2210,2209,2208,2207,2206,2205,2204,2203,2202,2201)
%RRR(2211,2210,2209,2208,2207,2206,2205,2204,2203,2202,2201,2112)
My question---
What is the way to run macro and write it via code and not manfully type it?
I mean, what is the way to create these statements of %RRR(.........) via code and not type it manually??
... View more