A class is generally associated to a business or functional logic. For example, you can combine all data and functions required for a worker to a class called as 'employee'. This might contain methods like AddEmployee, GetEmployeeDetails, CalculateSuperAnnuation etc. This would help you to create an object of Employee
for example
MyObj = New Employee
MyObj.Name = "OneQuestion"
On the other hand, Modules can be used for generic functions like Filler function, declaring public variables etc
http://www.dotnetdud.blogspot.com
VBA Tips & Tricks (
http://www.vbadud.blogspot.com)