{"id":6627,"date":"2014-11-18T01:47:33","date_gmt":"2014-11-18T01:47:33","guid":{"rendered":"http:\/\/65.0.9.100\/blog\/?p=6627"},"modified":"2014-11-18T01:47:33","modified_gmt":"2014-11-18T01:47:33","slug":"excel-formulas","status":"publish","type":"post","link":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/","title":{"rendered":"MS Excel formulas every professional must know"},"content":{"rendered":"

Almost all professionals have used MS Excel in some form or the other. Most haven\u2019t taken up any formal Ms Excel tutorial. Through self-study, they\u2019ve picked up basic excel formulas and features to help them with their day-to-day tasks.<\/p>\n

However, most don\u2019t realise the power that\u2019s available at their finger tips if they\u2019d take the pains to understand some special excel formulas. <\/p>\n

Apart from all the fantastic theoretical concepts that MBA students learn in a classroom, most realise that the lowly MS Excel formulas they\u2019ve ignored so far can be their best friends as they head out into their post MBA jobs. In fact, many quant focussed MBA jobs (like consulting) specifically need advanced excel skills.<\/p>\n

In my post-MBA job, I spent 5 years managing Mergers & Acquisitions (M&A) transactions. In almost all the M&A valuation modelling that I did (some deals valued at hundreds of millions of dollars), there was a heavy dependency on these seemingly simple and mundane, yet powerful formulas.<\/p>\n

But you don\u2019t have to head to business school to learn them. We\u2019ve picked out the 10 best MBA Excel formulas that can save you and your company valuable hours and money – by automating routine tasks, improving efficiency and doing complex calculations that your brain would\u2019ve struggled with.<\/p>\n

MS Excel formulas for every MBA & professional<\/h2>\n

As this is an introductory post, instead of trying to replicate the structure and format of an MS Excel Tutorial, we\u2019ll only touch upon the concepts. If any of these formulas catches your fancy, you can always follow up to learn more.<\/p>\n

What are MS Excel formulas?<\/h3>\n

If this sounds too basic, skip to the next section.<\/p>\n

Let\u2019s consider a simple example to understand what excel formulas are and what they can do. As you\u2019d know, excel worksheets are organised as 2-dimensional grids, with columns (named as \u2018A\u2019, \u2018B\u2019, \u2018C\u2019 etc) and rows (labelled as \u20181\u2019, \u20182\u2019, \u20183\u2019 etc). You can specific each \u2018cell\u2019 with its reference e.g. \u2018A1\u2019, \u2018A2\u2019, \u2018B1\u2019, \u2018B2\u2019<\/p>\n

If you want to add the values of 5 cells in Column A, you could use the formula: <\/p>\n

= A1 + A2 + A3 + A4 + A5<\/p>\n

What if you had a hundred values to add, or a thousand. It\u2019ll get pretty tedious to mention each cell name in the formula. This is where excel formulas come into picture.<\/p>\n

These simple concepts can be used in complex and powerful ways to deal with a numeric and textual data.<\/p>\n

Technically, these are MS excel functions. But most professionals don\u2019t bother about it and refer to them as Excel formulas. So that\u2019s what we\u2019ve done here. Your knowledge and the output you can produce with them is more important than the technical names.<\/p>\n

MS Excel Formulas for Numeric \/ Mathematical Operations<\/h3>\n

When God Gates created MS Office, he made MS Excel the king of the numeric world (while MS Word got language). So it\u2019s only fair that you start building your MS Excel skills with the basic numeric operations.<\/p>\n

In the example that we talked about earlier (where you needed to add 5 numbers), instead of the earlier approach of adding 5 cell references, you could simply use a function:<\/p>\n

=SUM (A1:A5)<\/p>\n

If you want to add the values in the first 100 cells in Column A, instead of the long-winded approach (=A1+A2+…..+A99+A100), all you need to do is change the formula to:<\/p>\n

= SUM (A1:A100)<\/p>\n

While we are on the topic, what goes inside the brackets are called \u2018arguments\u2019. But for this post, to avoid getting it mixed with the literal meaning of that word, we\u2019ll call them as \u2018parameters\u2019.<\/p>\n

In addition to SUM(), the other basic mathemetical functions you could check out are: AVERAGE(), MIN(), MAX(), COUNT(), SUMPRODUCT()<\/p>\n

MS Excel Formulas for String Operations<\/h3>\n

In the MS Excel world, \u2018String\u2019 refers to \u2018Text\u2019 (as opposed to Numbers). There\u2019s a bunch of excel formulas that allow you to manipulate, edit & build strings.<\/p>\n

Here’s a list of basic excel formulas to manage strings<\/em>.
\nLEN(), TRIM(), LEFT(), RIGHT(), FIND(), MID(), REPLACE(), SUBSTITUTE(), CONCATENATE()<\/p>\n

Each of these MS excel functions needs one or more parameters to be specified.<\/p>\n

LEN (\u201cMBA Crystal Ball\u201d) will display 16. That\u2019s the number of characters (including spaces) in the string.<\/p>\n

Similarly, LEFT (\u201cMBA Crystal Ball\u201d, 3) will display the first 3 characters (\u2018MBA\u2019) of the bigger string.<\/p>\n

MID(“MBA Crystal Ball”, 5, 7) starts from position 5 and displays the 7 subsequent characters i.e. \u2018Crystal\u2019.<\/p>\n

Excel Formulas for Conditional Evaluation<\/h3>\n

Some of the mathematical functions allow you to add a filter condition. Instead of saying, add ALL the elements in the following range of cells, only add a subset that meets the following condition.<\/p>\n

Examples of such conditional excel formulas are: SUMIF(), COUNTIF(), AVERAGEIF()<\/p>\n

For instance, in a table of MBA applicants which has a column filled with GMAT scores, if you want to find out the number of candidates who scored 710, you\u2019d use this formula: COUNTIF(A1:A100, 710)<\/p>\n

In the family of conditional Excel formulas, the IF statement deserves a special mention. It allows you to test a condition and take an action based on whether the condition is true or false.<\/p>\n

Here\u2019s an example: IF ( A1 = A2, \u201cEqual\u201d, \u201cNot Equal\u201d)<\/p>\n

This will compare the contents of 2 cells (in A1 & A2) and display the text value of \u2018Equal\u2019 if the values match, or \u2018Not Equal\u2019 if they don\u2019t.<\/p>\n

Excel Formulas for Logical Operations<\/h3>\n

Here’s the list of basic logical operators: AND, OR, NOT, TRUE, FALSE<\/p>\n

You could compare multiple conditions by using AND \/ OR, and then take the appropriate action.<\/p>\n

For instance, consider the formula: IF ( AND (A1 = A2, B1 = B2), \u201cEqual\u201d, \u201cNot Equal\u201d)<\/p>\n

This will display \u2018Equal\u2019 only if both conditions are met i.e. A1 & A2 have the same values, and B1 & B2 have the same values too.<\/p>\n

Excel Formulas for Database Operations<\/h3>\n

When you are dealing with a table of data (i.e. the values are spread across multiple columns and rows), the VLOOKUP and HLOOKUP functions can make it easy to search for specific values.<\/p>\n

This can be a little difficult to understand. So, out pops another example to help us out.<\/p>\n

Consider the following table, which displays the column names (A, B, C, D) and Row numbers (1, 2, 3, 4).
\n

<\/p>\n\n\n\n\n\n\n\n
<\/td>\nA<\/td>\nB<\/td>\nC<\/td>\nD<\/td>\n<\/tr>\n
1<\/td>\nName<\/td>\nAge<\/td>\nCity<\/td>\nGMAT<\/td>\n<\/tr>\n
2<\/td>\nRaj<\/td>\n27<\/td>\nChennai<\/td>\n730<\/td>\n<\/tr>\n
3<\/td>\nPooja<\/td>\n25<\/td>\nDelhi<\/td>\n710<\/td>\n<\/tr>\n
4<\/td>\nVijay<\/td>\n28<\/td>\nMumbai<\/td>\n680<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

<\/center>
\nNow consider the following formulas<\/p>\n

Formula 1: VLOOKUP (\u201cPooja\u201d, A2:D4, 4)<\/p>\n

This will cause excel to first scan the cell range (from A2 to D4), go down to Row 4 (i.e. Pooja\u2019s data) and then pick up the value from the 4th column in the cell range (i.e. GMAT score). The value displayed by the forumula is \u2018680\u2019.<\/p>\n

Formula 2: VLOOKUP (\u201cVijay\u201d, A2:D4, 3)<\/p>\n

This will scan the same cell range (from A2 to D4), go down to Row 5 (i.e. Vijay\u2019s data) and then pick up the value from the 3rd column in the cell range (i.e. City). The output of this formula is \u2018Mumbai\u2019.<\/p>\n

Excel Formulas for Date & Time<\/h3>\n

If you had no calendar, no mobile, no way to look at the moon\/stars to find out today\u2019s date, what would you do. You\u2019d open up MS Excel and type the date formula: TODAY()<\/p>\n

Your little American genie who likes the idiosyncratic MM\/DD\/YYYY format would tell you it\u2019s 11\/20\/2014 [or whatever date it is].<\/p>\n

You could use nested formulas (one formula within another) to extract specific sub-data from this.<\/p>\n

MONTH ( TODAY() ) would give you 11.
\nDAY ( TODAY() ) would display 20.
\nYEAR ( TODAY() ) shows 2014.
\nWEEKDAY ( TODAY() ) would tell say ‘Sunday’ (or the relevant day of the week).<\/p>\n

Other date\/time functions to check out: DATE(), HOUR(), MINUTE()<\/p>\n

Advanced Excel Formulas<\/h3>\n

The family of Excel formulas is quite large, complex and often confusing. <\/p>\n

Once you\u2019ve mastered the basic functions listed earlier, you could check out a few statistical formulas that tend to be used more often than the others: PERCENTILE(), STDEV(), RANK(), GROWTH()<\/p>\n

Excel also has several financial formulas: IRR(), PV(), FV(), RATE()<\/p>\n

Online Excel Tutorial vs Classroom Course vs Self-Study<\/h3>\n

If you are a self-starter, the online excel help that comes with the software is well-structured and user-friendly. Don\u2019t get overwhelmed by the full list of basic and advanced excel functions that span across various categories. In fact, you don\u2019t need an advanced excel formulas pdf file to get started.<\/p>\n

Just like you would while learning a foreign language, take up a few functions each week and become comfortable with their usage and parameters (\u2018arguments\u2019). Create your personal excel formulas cheat sheet<\/em>, instead of relying on the full list of excel formulas. Very soon, your excel vocabulary will grow.<\/p>\n

If you find all the technical jargon in the online help confusing, you could take a short 1-2 day classroom course or an online excel tutorial to quickly learn the basics.<\/p>\n

Whether it\u2019s MS Excel 2010 or any new version, the software is going to be around for a while. Invest some effort in it and you won\u2019t be disappointed.<\/p>\n

Any favourite excel tips and tricks that you\u2019d like to share? Which ones the most useful and the most frustrating?<\/p>\n","protected":false},"excerpt":{"rendered":"

Almost all professionals have used MS Excel in some form or the other. Most haven\u2019t taken up any formal Ms Excel tutorial. Through self-study, they\u2019ve picked up basic excel formulas and features to help them with their day-to-day tasks. However, most don\u2019t realise the power that\u2019s available at their finger tips if they\u2019d take the … Read more<\/a><\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[83],"class_list":["post-6627","post","type-post","status-publish","format-standard","hentry","category-mba-jobs-careers","tag-mba-jobs","masonry-post","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"\nMS Excel formulas every professional must know - MBA Crystal Ball<\/title>\n<meta name=\"description\" content=\"You don't need the full list of MS excel formulas (PDF) or an online tutorial to learn the basic & advanced excel functions. Here's a cheat sheet for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MS Excel formulas every professional must know - MBA Crystal Ball\" \/>\n<meta property=\"og:description\" content=\"You don't need the full list of MS excel formulas (PDF) or an online tutorial to learn the basic & advanced excel functions. Here's a cheat sheet for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/\" \/>\n<meta property=\"og:site_name\" content=\"MBA Crystal Ball\" \/>\n<meta property=\"article:published_time\" content=\"2014-11-18T01:47:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.mbacrystalball.com\/wp-content\/uploads\/2022\/08\/MCB-Logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"418\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Sameer Kamat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sameer Kamat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/\"},\"author\":{\"name\":\"Sameer Kamat\",\"@id\":\"https:\/\/www.mbacrystalball.com\/#\/schema\/person\/3743bd07b7e6351a9f11d206d59b4003\"},\"headline\":\"MS Excel formulas every professional must know\",\"datePublished\":\"2014-11-18T01:47:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/\"},\"wordCount\":1539,\"commentCount\":10,\"publisher\":{\"@id\":\"https:\/\/www.mbacrystalball.com\/#organization\"},\"keywords\":[\"MBA Jobs\"],\"articleSection\":[\"MBA Jobs & Careers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/\",\"url\":\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/\",\"name\":\"MS Excel formulas every professional must know - MBA Crystal Ball\",\"isPartOf\":{\"@id\":\"https:\/\/www.mbacrystalball.com\/#website\"},\"datePublished\":\"2014-11-18T01:47:33+00:00\",\"description\":\"You don't need the full list of MS excel formulas (PDF) or an online tutorial to learn the basic & advanced excel functions. Here's a cheat sheet for you.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mbacrystalball.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MS Excel formulas every professional must know\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mbacrystalball.com\/#website\",\"url\":\"https:\/\/www.mbacrystalball.com\/\",\"name\":\"MBA Crystal Ball\",\"description\":\"Best MBA Admissions Consultants in India\",\"publisher\":{\"@id\":\"https:\/\/www.mbacrystalball.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mbacrystalball.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.mbacrystalball.com\/#organization\",\"name\":\"MBA Crystal Ball\",\"url\":\"https:\/\/www.mbacrystalball.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.mbacrystalball.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.mbacrystalball.com\/wp-content\/uploads\/2022\/08\/MBA-Crystal-Ball-Logo.svg\",\"contentUrl\":\"https:\/\/www.mbacrystalball.com\/wp-content\/uploads\/2022\/08\/MBA-Crystal-Ball-Logo.svg\",\"width\":1739,\"height\":218,\"caption\":\"MBA Crystal Ball\"},\"image\":{\"@id\":\"https:\/\/www.mbacrystalball.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.mbacrystalball.com\/#\/schema\/person\/3743bd07b7e6351a9f11d206d59b4003\",\"name\":\"Sameer Kamat\",\"description\":\"Founder of MBA Crystal Ball. Author of Beyond The MBA Hype & Business Doctors. Here's more about me. Follow me on: Linkedin | Youtube\",\"sameAs\":[\"https:\/\/www.mbacrystalball.com\/\"],\"url\":\"https:\/\/www.mbacrystalball.com\/blog\/author\/mcbadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MS Excel formulas every professional must know - MBA Crystal Ball","description":"You don't need the full list of MS excel formulas (PDF) or an online tutorial to learn the basic & advanced excel functions. Here's a cheat sheet for you.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/","og_locale":"en_US","og_type":"article","og_title":"MS Excel formulas every professional must know - MBA Crystal Ball","og_description":"You don't need the full list of MS excel formulas (PDF) or an online tutorial to learn the basic & advanced excel functions. Here's a cheat sheet for you.","og_url":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/","og_site_name":"MBA Crystal Ball","article_published_time":"2014-11-18T01:47:33+00:00","og_image":[{"width":800,"height":418,"url":"https:\/\/www.mbacrystalball.com\/wp-content\/uploads\/2022\/08\/MCB-Logo.jpg","type":"image\/jpeg"}],"author":"Sameer Kamat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sameer Kamat","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#article","isPartOf":{"@id":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/"},"author":{"name":"Sameer Kamat","@id":"https:\/\/www.mbacrystalball.com\/#\/schema\/person\/3743bd07b7e6351a9f11d206d59b4003"},"headline":"MS Excel formulas every professional must know","datePublished":"2014-11-18T01:47:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/"},"wordCount":1539,"commentCount":10,"publisher":{"@id":"https:\/\/www.mbacrystalball.com\/#organization"},"keywords":["MBA Jobs"],"articleSection":["MBA Jobs & Careers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/","url":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/","name":"MS Excel formulas every professional must know - MBA Crystal Ball","isPartOf":{"@id":"https:\/\/www.mbacrystalball.com\/#website"},"datePublished":"2014-11-18T01:47:33+00:00","description":"You don't need the full list of MS excel formulas (PDF) or an online tutorial to learn the basic & advanced excel functions. Here's a cheat sheet for you.","breadcrumb":{"@id":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.mbacrystalball.com\/blog\/2014\/11\/18\/excel-formulas\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mbacrystalball.com\/"},{"@type":"ListItem","position":2,"name":"MS Excel formulas every professional must know"}]},{"@type":"WebSite","@id":"https:\/\/www.mbacrystalball.com\/#website","url":"https:\/\/www.mbacrystalball.com\/","name":"MBA Crystal Ball","description":"Best MBA Admissions Consultants in India","publisher":{"@id":"https:\/\/www.mbacrystalball.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mbacrystalball.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mbacrystalball.com\/#organization","name":"MBA Crystal Ball","url":"https:\/\/www.mbacrystalball.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mbacrystalball.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.mbacrystalball.com\/wp-content\/uploads\/2022\/08\/MBA-Crystal-Ball-Logo.svg","contentUrl":"https:\/\/www.mbacrystalball.com\/wp-content\/uploads\/2022\/08\/MBA-Crystal-Ball-Logo.svg","width":1739,"height":218,"caption":"MBA Crystal Ball"},"image":{"@id":"https:\/\/www.mbacrystalball.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.mbacrystalball.com\/#\/schema\/person\/3743bd07b7e6351a9f11d206d59b4003","name":"Sameer Kamat","description":"Founder of MBA Crystal Ball. Author of Beyond The MBA Hype & Business Doctors. Here's more about me. Follow me on: Linkedin | Youtube","sameAs":["https:\/\/www.mbacrystalball.com\/"],"url":"https:\/\/www.mbacrystalball.com\/blog\/author\/mcbadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/posts\/6627","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/comments?post=6627"}],"version-history":[{"count":0,"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/posts\/6627\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/media?parent=6627"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/categories?post=6627"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mbacrystalball.com\/wp-json\/wp\/v2\/tags?post=6627"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}