Best practice for MACROs

Hi, I am using macros for my tests and models. But i am bit confused,
Should i use different files for each macro?
or small macros should be in single file and new files for big macros?
Or new file for each macro irrespective of lines of code?
If there is another way to look at it please mention.

Hi Ramesh!

My view on this:
How to organise your code in a good way has at least 2 aspects:

  1. The code needs to work, in othe words it should do what it is intended.
  2. Your code needs to be maintained by you and your colleagues, and so your code needs to be readable and subject’ wise organised.

In our team’s practice it just works efficient to have one file per macro and file name is aligned with macro name.
Hope this helps.