subject: How To Become An Event Planner? [print this page] How To Become An Event Planner? How To Become An Event Planner?
Event planning is one of the most lucrative business options of modern day. Event planning includes corporate event management, wedding planning, party planning etc. The standard of living has elevated and people are into splurging when it comes to events like wedding, parties, corporate identity, brand building etc. This is the correct time to jump into the Event Planning Brand Wagon.
BASIC REQUIREMENTS
Don't worry, to start an event planning company of your own, you do not need to have an event planning degree but the basic qualities you should possess are as follows:
Creativity: If you are a creative person or have great taste, then you are ahead of the game. The reason being that people today are always interested in doing something innovative, something that they have never seen or never heard off. Today people want their events to be the talk of the town & are ready to pay the price, so it becomes very important for an event planner to either be creative or have the taste for it or better yet both.
Management qualities: Event planning is a business where a lot of activities have to be managed simultaneously. Like if you are a wedding planner and managing the complete wedding of your client, you have to take care of the venue, the people, the decoration, the invitation, guest coordination, entertainment and food etc. Every activity has to be perfect on this most special day of your client, so every arrangement needs your involvement as far as perfection is concerned. You have to have the knack of managing every activity properly. One of the most important qualities is to have a hell lot of patience. At times, there could be some hitches or loops that occur with a wedding. You have to keep your head cool and calm and take immediate decisions for rectification.
Marketing qualities: We all know how important marketing is, and the fact of the matter is that each one of us is marketing oneself every now and then, whether at home, office or work, in front of a boyfriend or girlfriend, nearly everywhere & every time. So, if you think that marketing is not your cup or tea, get into the water, swimming would not be that difficult.
Believing in yourself it is very important when you want to market yourself or your event planning firm. If you believe that you are the best event planner of the town, then you can make others believe this easily. So, self confidence is the key to self marketing.
Commercials: Though, opening an event management firm or business does not require a lot of funds, you can start up with one of the activities like catering or decoration and eventually broaden your horizons , step by step is what I mean to say! Though, for some kind of fundamental infrastructure, funds would be required. In case, funds are an issue, you can either ask a bank or if that is not possible you're family or a close friend could be another option. Direct marketing would be a gradual process.
WORKING MODEL: The next thing is to make the aforementioned inbuilt properties of yours work for you. Do not panic, if you do not possess one or two of the above skills, you can groom yourself steadily.
Initially, make sure that you are accessible, people know about you. You can email all of your contacts informing them about your business. You can even text them this information. Go on social networking sites as well as business networking sites; make your company profile there. Join event planning groups. Connecting with people is very important, potential clients will choose you only if they have heard about you. Internet is the most cost effective medium to advertise yourself and increase your visibility. Also, join online yellow pages and relative websites. Make sure that when you are mailing your friends, you send creative emails with images/ animation if possible so that it catches their eyes. You also should visit events organized by different event planners, obviously if invited, but if you keep in touch with the trends in the business, it would help your business always. Most importantly making a website would garner you a place in the global marketplace.
You must try and anticipate the taste of your client and work in that direction but to ensure that the end product multiplies his/her happiness because the domino effect of the same would be multiplication in your returns. Innovative & relevant ideas would help enhance your business as the best thing about this business of event planning is that, every work you do is visible to everyone. So, if your quality is great, you are on and can go on and on as your work will speak for you, more than you.
Now, for the most important part, there is this saying less profit, more business. At inception, you have to imbibe this line and work towards giving your client a creative as well as cost effective product. This is not easy, as quality and creativity have a higher price tag, but early on, it is important for your business to kick off. With no experience in the field it would not be easy to get customers unless and until you are offering them some kind of value addition , that others would not offer, some special discount or a combo offer or something really lucrative. Slowly and consistently you can keep on taking more responsibilities from one activity to other, ultimately managing comprehensive event/events.
Any and every one is eligible to become an event planner, but what is important is to become a successful event planner & if you keep in mind the aforementioned tips & strategies , event planning
var LEO_HIGHLIGHTS_IFRAME_TOP_SIZE = new LeoHighlightsDimension(LEO_HIGHLIGHTS_IFRAME_TOP_WIDTH,LEO_HIGHLIGHTS_IFRAME_TOP_HEIGHT);
var LEO_HIGHLIGHTS_IFRAME_BOTTOM_HOVER_SIZE = new LeoHighlightsDimension(LEO_HIGHLIGHTS_IFRAME_BOTTOM_COLLAPSED_WIDTH,LEO_HIGHLIGHTS_IFRAME_BOTTOM_COLLAPSED_HEIGHT);
var LEO_HIGHLIGHTS_IFRAME_BOTTOM_CLICK_SIZE = new LeoHighlightsDimension(LEO_HIGHLIGHTS_IFRAME_BOTTOM_EXPANDED_WIDTH,LEO_HIGHLIGHTS_IFRAME_BOTTOM_EXPANDED_HEIGHT); var LEO_HIGHLIGHTS_DIV_HOVER_SIZE = new LeoHighlightsDimension(LEO_HIGHLIGHTS_IFRAME_TOTAL_COLLAPSED_WIDTH,LEO_HIGHLIGHTS_IFRAME_TOTAL_COLLAPSED_HEIGHT);
var LEO_HIGHLIGHTS_DIV_CLICK_SIZE = new LeoHighlightsDimension(LEO_HIGHLIGHTS_IFRAME_TOTAL_EXPANDED_WIDTH,LEO_HIGHLIGHTS_IFRAME_TOTAL_EXPANDED_HEIGHT); /** * Sets the size of the passed in element * * @param elem * @param dim * @return */
function _leoHighlightsSetSize(elem,dim)
{ try { // Set the popup location elem.style.width = dim.width + "px"; if(elem.width) elem.width=dim.width; elem.style.height = dim.height + "px"; if(elem.height) elem.height=dim.height; } catch(e) { _leoHighlightsReportExeception("_leoHighlightsSetSize()",e); } } /** * This can be used for a simple one argument callback * * @param callName * @param argName * @param argVal * @return */
function _leoHighlightsSimpleGwCallBack(callName,argName, argVal)
{ try { var gwObj = new Gateway(); if(argName) gwObj.addParam(argName,argVal); gwObj.callName(callName); } catch(e) { _leoHighlightsReportExeception("_leoHighlightsSimpleGwCallBack() "+callName,e); }
} /** * This gets a url argument from the current document. * * @param url * @return */
function _leoHighlightsGetUrlArg(url, name )
{ name = name.replace(/[[]/,"\[").replace(/[]]/,"\]"); var regexS = "[\?&]"+name+"=([^]*)"; var regex = new RegExp( regexS ); var results = regex.exec(url); if( results == null ) return ""; else return results[1];
} /** * This allows to redirect the top window to the passed in url * * @param url * @return */
} /** * This will find an element by Id * * @param elemId * @return */
function _leoHighlightsFindElementById(elemId,doc)
{ try { if(doc==null) doc=document; var elem=doc.getElementById(elemId); if(elem) return elem; /* This is the handling for IE */ if(doc.all) { elem=doc.all[elemId]; if(elem) return elem; for ( var i = (document.all.length-1); i >= 0; i--) { elem=doc.all; if(elem.id==elemId) return elem; } } } catch(e) { _leoHighlightsReportExeception("_leoHighlightsFindElementById()",e); } return null;
} /** * Get the location of one element relative to a parent reference * * @param ref * the reference element, this must be a parent of the passed in * element * @param elem * @return */
function _leoHighlightsGetLocation(ref, elem) { _leoHighlightsDebugLog("_leoHighlightsGetLocation "+elem.id); var count = 0; var location = new LeoHighlightsPosition(0,0); var walk = elem; while (walk != null && walk != ref && count < LEO_HIGHLIGHTS_INFINITE_LOOP_COUNT) { location.x += walk.offsetLeft; location.y += walk.offsetTop; walk = walk.offsetParent; count++; } _leoHighlightsDebugLog("Location is: "+elem.id+" - "+location); return location;
} /** * This is used to update the position of an element as a popup * * @param IFrame * @param anchor * @return */
function _leoHighlightsUpdatePopupPos(iFrame,anchor)
{ try { // Gets the scrolled location for x and y var scrolledPos=new LeoHighlightsPosition(0,0); if( self.pageYOffset ) { scrolledPos.x = self.pageXOffset; scrolledPos.y = self.pageYOffset; } else if( document.documentElement && document.documentElement.scrollTop ) { scrolledPos.x = document.documentElement.scrollLeft; scrolledPos.y = document.documentElement.scrollTop; } else if( document.body ) { scrolledPos.x = document.body.scrollLeft; scrolledPos.y = document.body.scrollTop; } /* Get the total dimensions to see what scroll bars might be active */ var totalDim=new LeoHighlightsDimension(0,0) if (document.all && document.documentElement && document.documentElement.clientHeight&&document;.documentElement.clientWidth) { totalDim.width = document.documentElement.scrollWidth; totalDim.height = document.documentElement.scrollHeight; } else if (document.all) { /* This is in IE */ totalDim.width = document.body.scrollWidth; totalDim.height = document.body.scrollHeight; } else { totalDim.width = document.width; totalDim.height = document.height; } // Gets the location of the available screen space var centerDim=new LeoHighlightsDimension(0,0); if(self.innerWidth && self.innerHeight ) { centerDim.width = self.innerWidth-(totalDim.height>self.innerHeight?16:0); // subtracting scroll bar offsets for firefox centerDim.height = self.innerHeight-(totalDim.width>self.innerWidth?16:0); // subtracting scroll bar offsets for firefox } else if( document.documentElement && document.documentElement.clientHeight ) { centerDim.width = document.documentElement.clientWidth; centerDim.height = document.documentElement.clientHeight; } else if( document.body ) { centerDim.width = document.body.clientWidth; centerDim.height = document.body.clientHeight; } // Get the current dimension of the popup element var iFrameDim=new LeoHighlightsDimension(iFrame.offsetWidth,iFrame.offsetHeight) if (iFrameDim.width 0) position.x = anchorPos.x + anchorDim.width; else if (anchorScreenPos.x - anchorDim.width - iFrameDim.width > 0) position.x = anchorPos.x - anchorDim.width; else // default to below position.y = anchorPos.y + anchorDim.height; _leoHighlightsDebugLog("_leoHighlightsUpdatePopupPos() - sideBottom: "+position); } } /* Make sure that we don't go passed the right hand border */ if(position.x+iFrameDim.width>centerDim.width-20) position.x=centerDim.width-(iFrameDim.width+20); // Make sure that we didn't go passed the start if(position.x