SlideShare ist ein Scribd-Unternehmen logo
1 von 18
Downloaden Sie, um offline zu lesen
Excel Functions Every
Community Manager
Should Know
Tips for data manipulation
from our Analysts
1
Excel Functions Every Community Manager Should Know
Tips for data manipulation from our Analysts
Excel can be intimidating
Let’s face it, without functions Excel is just a wonderful way to store information. With functions, however, Excel
becomes an amazing tool for manipulating and making sense out of large amounts of data. That’s why we love Excel
so much. With a few little functions we can take a massive range of data, mine a wealth of information out of it, and
turn the data into informed action items. Of course, the thought of trying to string together complex functions in Excel
is enough to send anybody into a cold sweat. We couldn’t provide the depth of data or the level of insight offered in our
reports without our awesome team of data Analysts who bring it all together.
That’s why we asked them to walk us through some of the basic Excel functions they use on a daily basis – so that data
ranges are easier to manipulate even if you’re not an Excel wizard. We created this list with community managers in
mind, and we broke each function down in a way that’s easy to understand.
Our Analysts’ guide to Excel functions
So what exactly are Excel functions? Functions show a relation between a set of inputs and a set of outputs, where
each input has exactly one output. In Excel, functions take the data from your workbook (the input) and turn them into
information (the output) through a specific syntax. For example, you may be familiar with something like SUM.
Syntax refers to the way the function is ordered, so that it returns a result. Each function starts with an equal sign (=)
and are followed by the name of the function itself.
Example: =SUM(A1, A2)
This means that the cell you entered this function into will add the contents of cell A1 and A2.
Pretty easy, right?
Now, we’ll try something a little more complex. Say you want to find out how many days are in a given reporting period.
You want to do this to figure out the average engagement within that period – say, Q1 of 2014. Without using a
function, you could do this by entering the following into an Excel sheet:
Here, you’re telling Excel to find out how many days there are between 1/1 and 4/1. You already have the dates in date
format in certain cells, and Excel is just subtracting one date from another. Here, Excel accounts for the number of days
in February (there were 28) and returns the value 90. There were 90 days in your reporting period.
You can also do this using the DATE function. You might also use the DAYS function.
Note the specific way each date is formatted. In the first case, the date reads: year, month,
day. In the second case, you must put the date in quotation marks.
The Syntax of the function DATE is:
=DATE(2014,4,1)-DATE(2014,1,1)
The Syntax for the DAYS function is:
=DAYS(“4/1/14”,”1/1/14”)
The syntax of the function SUM is:
=SUM(this, plus this)
2
These functions are all particularly useful when you’re trying to get a day count to average something like engagement
over a period of time. You would use a function similar to:
=A1/(DAYS(“4/1/14”, “1/1/14”))
Where A1 is your engagement number and your date range is from January 1 to April 1. You can do the same thing
with hours.
In the example above, the hour function returns the value 14 – the number of hours between 8:00 am, and 10:00 pm.
The cells that are a time value are formatted as a time value in the number formatting options. Alternately, enter your
time range into the function using quotation marks around the numbers like this:
=HOUR(“8:00 AM”,”10:00 PM”)
Now what if you want to find the week number of the year to compare two weeks worth of engagement? Use the
WEEKNUM function to find out what number week (1-52) a certain day is on.
The Syntax for the HOUR function is:
=HOUR(“start time”, “end time”)
The Syntax for the WEEKNUM formula is:
=WEEKNUM(“date”)
33
Here, the date 3/14 falls in week 11 and the date 3/31 falls in week 14 shown on the calendar below.
The MONTH function can be used in a similar way. For a reporting period, MONTH is the function that allows you to, for
example, determine that your highest engagement happened in “March”.
These functions are pretty easy and chances are you’ve used them before; but you could do so much more with
functions. You could tell Excel to discover the maximum engagement within a time frame for your Facebook Page, or
ask for the handle of the Twitter user who has the most engagement. How do you do that?
WEEK
WEEK
Let’s ask the Analysts
4
The Analysts
Functions Lori Uses:
IF is probably the function I use most. Use this function when you have True/False criteria and you want to do one thing
when the criteria are True and something different when the criteria are False.
Example: =IF(A1>10, “yes”, “no”)
In the above example, if the value in cell A1 is greater than 10, the function would return the word “yes”. This comes in
handy when you want to find specific data.
For instance, there is a report setting in the Simply Measured app where our customers can decide if they want to
include User Posts in their Facebook Engagement. I use an IF statement to decide if I should use the function that
includes User Posts in Engagement, or if I should use the function that excludes User Posts in Engagement.
This comes in handy when you want to count or add cells based on specific data. COUNTIF lets you count items based
on a set of criteria and SUMIF lets you sum items based on a set of criteria.
Example: =COUNTIF(A2:A5,”apples”)
Here, Excel will count how many cells in the A column contain the value “apples”.
Example: =SUMIF(B2:B25,”>5”)
In this function, if the value of a cell in the B column is greater than 5, Excel will add those values together.
Who: Lori Williams
Her story: Hi, I’m Lori! I took a long and winding
road to end up at Simply Measured. It involved
a LOT of school, a little bit of nonprofit work,
and eventually giving in to the fact that I am
a data nerd and a tech geek. I love building
reports that make social data easier to
understand and more useful for our customers.
The syntax of the IF function is:
=IF(logic test, value if true, value
if false)
The Syntax for SUMIF is:
=SUMIF(range, criteria)
55
You could find out how many Tweets you sent between April 10 and April 15 with COUNTIF. If you wanted to find
the total engagement on those same Tweets, you would add up all the retweets, mentions, @replies and favorites in
between those two dates using a SUMIF.
IFERROR tells Excel what value to show if there is a problem with a function.
We use IFERROR so our reports look nice even when there isn’t much data. Say you have a calculation for the percent
of Tumblr posts that were quotes, but for the time period you’re looking at, you didn’t make any posts. In Excel, 0
divided by 0 gives a #DIV/0 error. You would use IFERROR to show “0” instead of “#DIV/0”. Try it yourself, substituting
“#DIV/O” for “value”, and “O” for “value_if_error”.
NETWORKDAYS counts the number of workdays between two dates.
I use this one to find out things like how many days did it take us to create our last project? Or how many days have I
worked at Simply Measured?
The holidays value is optional; it’s a way to exclude dates whether or not they’re actually holidays. To do this, you would
list those dates in a column, and add them as a range in parentheses to exclude them.
These Excel functions are easy to use and allow you to pinpoint data that you can build on later!
The Syntax for IFERROR is:
=IFERROR(value, value_if_error)
The Syntax for NETWORKDAYS is:
=NETWORKDAYS(start_date,
end_date, [holidays])
6
Functions Deepti Uses:
MAX/MIN and LARGE/SMALL are some of the simplest Excel functions. MAX allows you to find the highest number
in a range while MIN returns the lowest number.
Let’s say you have the daily count of fans gained by a Facebook Page and want to find out the highest and lowest
gain in fans. You can easily calculate that using the functions MAX and MIN. If the fans gained are listed in rows A1 to
A30, the function for highest gain in fans would be =MAX(A1:A30) and the function for lowest gain in fans would be
=MIN(A1:A30). LARGE and SMALL do something similar to MAX and MIN, but go a step further.
Using LARGE and SMALL, you can choose where in the range you want to find your value. For example, if you wanted
to find the 3rd largest number in a range, the function would be =LARGE(A1:A30, 3) and it would return the 3rd largest
number in the range. Small does exactly the opposite. =SMALL(A1:A30, 3) returns the 3rd smallest number in the
range.  
This is helpful in finding out data like which campaigns drove the most fan acquisition, or which Tweets had the highest
engagement via mentions and retweets. The best part is: they’re easy to use!
Who: Deepti Dhanjani
Her story: I went from being a Simply Measured
customer who used our reports to building
awesome reports for others to use. I’ve always
been better with numbers than with words
and I love that I get to manipulate data into
meaningful insights for our customers.
The Syntax for these functions is easy:
=MAX(range)
=MIN(range)
7
Use the following syntax for these
functions:
=LARGE(range, sort criteria)
=SMALL(range, sort criteria)
7
Functions Vikram Uses:
The tools that I use quite often are actually a collection of similar functions:  LEFT, RIGHT, MID, and SEARCH.
for example:
=RIGHT(“Simply Measured is the best”, 4) returns the word “best”
=RIGHT(A1,4) returns the last four characters in the cell A1
=LEFT(“Simply Measured is the best”, 6) returns “Simply”
Here’s a visual example of how these functions work. =LEFT(I25,16) returns the first sixteen characters in the cell I25.
Similarly, you can choose to isolate text or data from the middle of the cell using the MID function.
Examples of Excel MID function:
=MID(“hello”,2,3) returns “ell”
=MID(“hello”,2,100) returns “ello”
Obviously “hello” contains fewer than 100 characters. The MID function in our example
would return up to 100 characters.
Who: Vikram Nayani
His Story: Hey there!  My name is Vikram and
I’m the newest addition to our incredible Analyst
team.  My main focus at Simply Measured is
helping to create the reports that our customers
love so much.  Understanding our customer’s
pain points and creating solutions that help
alleviate them is an awesome feeling, and I love
that I help make their lives a little easier.  
The Syntax for RIGHT is:
=RIGHT(from this text, this many letters)
Syntax of MID:
=MID(from this text, start here,
return this many letters)
These same rules apply to the =LEFT function:
=LEFT(from this text, this many letters)
8
You can also search for specific criteria within cells using the function SEARCH.
Examples of Excel SEARCH function:
=SEARCH(“e”,”hello”,1) returns a value of 2, which is the location of “e” in the string “hello”.
=SEARCH(“m”,”hello”,1) returns an “ERROR” warning because there is no “m” in “hello”)
So how are these helpful?  Let’s use a real world example: by now we are all familiar with Gmail’s new tabbed
interface.  What if we wanted to tweak some of our emails to customers to make sure that they get put in the “Primary”
tab and not the “Promotions” tab? The first step would likely be figuring out which of our contacts are Gmail users. To do
this, we’ll use LEFT/RIGHT/MID and SEARCH.
Any email ID contains 2 parts – user name and domain name. For example, in this email id - ImportantCustomer@gmail.
com - Important Customer is the username and gmail.com is the domain.
The domain always starts after “@”, so we need to figure out a way to rule out that portion of the text.  This is where our
friends RIGHT and SEARCH come in (with a special appearance by LEN). LEN returns the length of any string of text.  
Example: =LEN(“Important.Customer@gmail.com”) will return 28.  
If you remember from the description, the Excel RIGHT function will let you cut a portion of text from the right side of
the text.
Example: =RIGHT(“Long”,2) will give you ng.
To get the email domain name, we need to get all the letters to right of email ID after the“@” symbol. How do we find
that position in text? We use the SEARCH function. The SEARCH function gives the location of one text in another.
The Syntax for this function is:
=SEARCH(this, in this text,
[start here]).
99
Example: =SEARCH(“@”, “Important.Customer@gmail.com”,1) will return 19.
19 is the location of the “@” in “Important.Customer@gmail.com, when you start counting from position 1.  
SEARCH will return an error (#VALUE!) if the text you are trying to find is not available.
Example: =SEARCH(“c”, “Vikram”, 1) will return #VALUE! because there is no “c” in Vikram.
Now we know how these work, let’s go find the domain name from the e-mail address.
Assuming cell A1 contains “Important.Customer@gmail.com”, the function for getting the domain name is:
=RIGHT(A1,LEN(A1)-SEARCH(“@”,A1,1)) This will return the value gmail.com.
(Go ahead and try it!  Open up Excel and type the e-mail address in cell A1, and then the function anywhere else in
the sheet.) 
So what did we just do?  The LEN function gave us the total number of characters in our text.  The SEARCH function
then told us what position the @ symbol was located at in our text.  If we subtract the two, we will get the total number
of characters after the @ symbol, and then we put that into RIGHT in order to get the domain name (the number
of characters after the “@” symbol).  These functions have helped me out of plenty of text related Excel jams (they
continue to do so, actually), and hopefully they’ll do the same for you.  Happy Excel-ing!  
10
Functions David Uses:
A lot of what a digital analyst does is quantitative, but virtually every piece of content we deal with is at least partially
text--whether it’s a Tweet, an Instagram caption, a YouTube video title, or a username. A few basic tricks in dealing with
text can make your life a lot easier.
Let me introduce you to LEN and SUBSTITUTE. These two functions are great to have in your toolbox. LEN returns
the number of characters in a string of text.
SUBSTITUTE replaces a sequence of characters with another sequence of characters. It requires three inputs (called
“arguments”): your reference text, the sequence of characters being replaced, and the sequence of characters you’re
replacing it with.
Be careful, though—SUBSTITUTE is case-sensitive in deciding which strings to replace. So we’re having lots of fun
measuring and replacing text strings, but if you put them together, LEN and SUBSTITUTE can do some pretty heavy
lifting. For example, what if you want to know how many times a word or phrase occurs in a bunch of text? There isn’t a
straightforward way to do that in Excel. SEARCH can tell you whether or not your word or phrase occurs, and what its
relative position is, but it will only find the first occurrence. COUNTIFS can check for a text string across a range of cells and
return a count of the cells that include the string, but again, it won’t tell you anything about multiple occurrences in a single
cell. But check this out:
Who: David Lukas
His Story: I’m a Senior Analyst at Simply
Measured. Before I came here, I worked in a
variety of analyst roles in investment banking
and asset management. I love being part of a
company that is building real products that solve
real problems, and the fact that we’re doing it
with data and analytics pretty much makes it
my dream job. I’m a Seattle native; I went to UW
(woof!), and Alton Brown and Ron Swanson are
two of my heroes.
The Syntax for LEN is:
=LEN(text)
11
The Syntax for SUBSTITUTE is:
=SUBSTITUTE(text, “value to
replace”, “value to replace it with”)
11
I know! I could have sworn Jim Mora said “playoffs” a dozen times, but it was only three! What we’re doing here might
look confusing, but the hardest part is really just keeping the different sets of parentheses straight. It’s pretty simple if
you break it into steps:
1. =LEN(B2) tells us the total number of characters in our original text.
2. =LEN(SUBSTITUTE(LOWER(B2),C2,””)) is taking our original text in B2, making it all lowercase using LOWER (to
avoid the case-sensitivity issue mentioned above), searching it for the string in cell C2 (“playoffs”), and replacing every
instance of that string with “”, which is essentially deleting it (yes, SUBSTITUTE can do that!).
Now subtract 2) from 1). This number is equal to the total mentions of “playoffs” times the length of the word
“playoffs.” Finally, we just divide the whole thing by LEN(C2), the number of characters in “playoffs”, to get the number of
times our search term was mentioned.
There are a ton of other ways you can use these two functions for operations that don’t directly involve string length or
substitution. If you find yourself floundering with text parsing in Excel, and you intuitively know what it is you’re trying to
accomplish but just can’t think of how to get there, there’s a decent chance that LEN, SUBSTITUTE, or both will be part
of your solution.
12
Functions Alex Uses:
We build all of our reports natively in Excel, so we have to use every tool in Excel’s workbench to make our reports as
robust as possible. One of tools that we use constantly is the function combination INDEX/MATCH.
If you’re familiar with the VLOOKUP function you already basically understand how INDEX/MATCH works. It looks
for a value in one column of an array and finds the user-defined corresponding value in an adjacent column. However,
this where the similarities end. The primary difference between the two operations is that INDEX/MATCH is really two
combinations rather than one, and in almost every case INDEX/MATCH is superior to either VLOOKUP or it’s Luigi,
HLOOKUP.
Let’s start with the syntax of a typical INDEX/MATCH operation. Array is the column that you want to return data from,
and row number will be the MATCH function. Lookup value is the key of the thing you are using to find corresponding
information for, and lookup array is the column or array where that key value resides. The match type is optional, but
usually we set it to 0 to specify we want an exact match.
When we replace the row numbers argument in the INDEX function with MATCH, the result looks something like this:
=INDEX(array, MATCH(lookup value, lookup array, match type))
The MATCH function will return the row of the key that we want to find corresponding data for, and the INDEX will take
care of actually moving across the row to find the corresponding data.
This can be a bit confusing but TRUST ME, once you understand INDEX/MATCH you will never go back to VLOOKUP
again! Let’s think of an example.
Who: Alex Snider
His Story: My name is Alex Snider and I’m
one of the Analysts here at Simply Measured.
I’ve loved looking at charts and data since as
long as I can remember and I came to Simply
Measured with a background in electoral
research and analysis. My (amazingly cool) job
at Simply Measured is to help design and build
reports that are fully dynamic and scalable. This
means that our customers can guide their digital
marketing programs with informed data.
The syntax for INDEX is:
=INDEX(array, row numbers)
The syntax for MATCH is:
=MATCH(lookup value, lookup
array, match type)
13
The function for this problem would read:
=INDEX(B:B, MATCH(“Washington”,A:A,0))
The important thing to remember is that you always enter the column of data you want back FIRST.
So why is INDEX/MATCH so much better than VLOOKUP if they essentially perform the same function? First,
because INDEX/MATCH typically only looks at two columns to find the lookup data rather than an entire multi-column
array, INDEX/MATCH can substantially lower the processing load on Excel. Another benefit is that, unlike VLOOKUP,
INDEX/MATCH can work in any direction; you don’t need to have your identifying key on the left and then your lookup
data on the right. INDEX/MATCH can work left-to-right, right-to-left, inside-to-outside, across space-time, etc. All you
have to do is follow the rules (put the data you want returned FIRST) and it should work like a dream. Finally, because
INDEX/MATCH doesn’t rely on the static column number arguments inherent in VLOOKUP, you never have to worry
about adding/subtracting/rearranging columns and messing up your lookup argument. INDEX/MATCH couldn’t care
less about the space between your key and what you’re trying to find, it just hones in on the data you want like a shark
to blood.
We use INDEX/MATCH extensively in our reports in a ton of different ways. A good use-case example that could be
useful to a community manager is to help find the Tweet with the most engagement. Assume we have a column of all of
our Tweets and a column with the engagement numbers of each Tweet.
Imagine a spreadsheet with two columns: in Column A are all 50 of the United States in alphabetical order. In
Column B we have theB we have the population of each state. Now let’s say we want to know the population of Washington, but
we are feeling particularly lazy today and can’t be bothered to scroll all the way down the page to find Washington so
we want to use INDEX/MATCH to perform the work for us.
The function for this problem would read:
=INDEX(B:B, MATCH(“Washington”,A:A,0))
The important thing to remember is that you always enter the column of data you want back FIRST.
So why is INDEX/MATCH so much better than VLOOKUP if they essentially perform the same function? First,
because INDEX/MATCH typically only looks at two columns to find the lookup data rather than an entire multi-column
array, INDEX/MATCH can substantially lower the processing load on Excel. Another benefit is that, unlike VLOOKUP,
INDEX/MATCH can work in any direction; you don’t need to have your identifying key on the left and then your lookup
data on the right. INDEX/MATCH can work left-to-right, right-to-left, inside-to-outside, across space-time, etc. All you
have to do is follow the rules (put the data you want returned FIRST) and it should work like a dream. Finally, because
INDEX/MATCH doesn’t rely on the static column number arguments inherent in VLOOKUP, you never have to worry
about adding/subtracting/rearranging columns and messing up your lookup argument. INDEX/MATCH couldn’t care
less about the space between your key and what you’re trying to find, it just hones in on the data you want like a shark
to blood.
We use INDEX/MATCH extensively in our reports in a ton of different ways. A good use-case example that could be
useful to a community manager is to help find the Tweet with the most engagement. Assume we have a column of all of
our Tweets and a column with the engagement numbers of each Tweet.
6.897 million 3.899 million 1.5957 million
14
The function for this example would be:
=INDEX(tweet.engagement.column,MATCH(MAX(tweet.text.column),tweet.text.column,0))
By working in a MAX function into the MATCH element of the function, we can return the text of the Tweet that had the
most (MAX) engagement.
If you really want to be an Excel baller and step your data analysis up to the next level, INDEX/MATCH is an absolute
must know!
Why use Excel tools?
As our Analysts have shown, Excel does an excellent job (pun intended!) of sorting and finding data, reducing the time it
takes to analyze large amounts of information. Our reports are built in Excel because not only can you store significant
amounts of data, but Excel will also help you pinpoint data trends that you otherwise may not have known. Excel gives
you the option to build charts and graphs based on your data, in a way that tells your story across all your social media
networks. Of course, don’t just take our word for it; try your hand at Excel magic on one of our free reports.
15
SIMPLY MEASURED SAMPLE REPORTS
Simply Measured provides a measurement and reporting solution that aggregates social media data
and web analytics from more than a dozen sources and presents it in a single dashboard. We’ve
provided samples of reports used by more than 30 percent of the top 100 global brands and over
80,000 users who are Simply Measured customers.
Answer questions about Facebook Page performance and engagement, as well as fans, posts, “Likes”,
comments and engagement trends. Dig into the most effective posts and the impact they’ve had on
your Page and your audience.
Want to try Simply Measured?
Request a Free 14 Day Trial
16

Weitere ähnliche Inhalte

Was ist angesagt?

Errors in ms excel
Errors in ms excelErrors in ms excel
Errors in ms excelNikita Arora
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariAmresh Tiwari
 
Training presentation vlookup - what it is, and when to use it
Training presentation   vlookup - what it is, and when to use itTraining presentation   vlookup - what it is, and when to use it
Training presentation vlookup - what it is, and when to use ithayat25in
 
Excel IF function
Excel IF functionExcel IF function
Excel IF functionHtay Aung
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functionsAnjan Mahanta
 
Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel FunctionsGautam Gupta
 
Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters DevadattaSai Cheedella
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulasLearnIT@UD
 
VLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious AnalyticVLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious AnalyticMaria Elena Acdol-Talavera
 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basicsguest1c3d8c6
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functionsBuffalo Seminary
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowAlexHenderson59
 
presentationMs excel
presentationMs excelpresentationMs excel
presentationMs excelTanveer Ahmed
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsP. SUNDARI ARUN
 

Was ist angesagt? (20)

Real World Excel Formulas
Real World Excel FormulasReal World Excel Formulas
Real World Excel Formulas
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
Errors in ms excel
Errors in ms excelErrors in ms excel
Errors in ms excel
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Training presentation vlookup - what it is, and when to use it
Training presentation   vlookup - what it is, and when to use itTraining presentation   vlookup - what it is, and when to use it
Training presentation vlookup - what it is, and when to use it
 
Excel IF function
Excel IF functionExcel IF function
Excel IF function
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
 
Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel Functions
 
Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters
 
Ms excel 2007 tutorial
Ms excel 2007 tutorialMs excel 2007 tutorial
Ms excel 2007 tutorial
 
Excel text function
Excel text functionExcel text function
Excel text function
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulas
 
VLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious AnalyticVLOOKUP Function - Marelen Talavera - Vivacious Analytic
VLOOKUP Function - Marelen Talavera - Vivacious Analytic
 
Spreadsheets
SpreadsheetsSpreadsheets
Spreadsheets
 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basics
 
Ms excel ppt
Ms excel pptMs excel ppt
Ms excel ppt
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must know
 
presentationMs excel
presentationMs excelpresentationMs excel
presentationMs excel
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and Functions
 

Andere mochten auch

Flipbook - Film 260
Flipbook - Film 260Flipbook - Film 260
Flipbook - Film 26011mtp4
 
Lighting for Literacy Fosters Student Creation of Renewable Lighting
Lighting for Literacy Fosters Student Creation of Renewable LightingLighting for Literacy Fosters Student Creation of Renewable Lighting
Lighting for Literacy Fosters Student Creation of Renewable LightingDave Katra
 
Smartphone Windows Mobile
Smartphone Windows Mobile
Smartphone Windows Mobile
Smartphone Windows Mobile karl7porter02
 
wedding TV coverage, 060511
wedding TV coverage, 060511wedding TV coverage, 060511
wedding TV coverage, 060511Jonny Sharp
 
innovation vouchers - approved
innovation vouchers - approvedinnovation vouchers - approved
innovation vouchers - approvedJonny Sharp
 
CV - Bart Schoonvliet - ENG
CV - Bart Schoonvliet - ENGCV - Bart Schoonvliet - ENG
CV - Bart Schoonvliet - ENGBart Schoonvliet
 
Chiara María Valdez Ayala
Chiara María Valdez AyalaChiara María Valdez Ayala
Chiara María Valdez AyalaChiara Valdez
 
карина 13 гр
карина 13 гркарина 13 гр
карина 13 грKhasavyrt0005
 
Endomitriosis - ATCM Journal
Endomitriosis - ATCM JournalEndomitriosis - ATCM Journal
Endomitriosis - ATCM JournalLIQIN ZHAO
 
Las tics en el turismo
Las tics en el turismoLas tics en el turismo
Las tics en el turismoDaniela Gil
 
Eabametoong and the NWMO engagement report
Eabametoong and the NWMO engagement reportEabametoong and the NWMO engagement report
Eabametoong and the NWMO engagement reportMike Rae
 
บริการต่างๆบนอินเตอร์เน็ต
บริการต่างๆบนอินเตอร์เน็ตบริการต่างๆบนอินเตอร์เน็ต
บริการต่างๆบนอินเตอร์เน็ตkotchakornsun
 

Andere mochten auch (16)

Flipbook - Film 260
Flipbook - Film 260Flipbook - Film 260
Flipbook - Film 260
 
Lighting for Literacy Fosters Student Creation of Renewable Lighting
Lighting for Literacy Fosters Student Creation of Renewable LightingLighting for Literacy Fosters Student Creation of Renewable Lighting
Lighting for Literacy Fosters Student Creation of Renewable Lighting
 
Smartphone Windows Mobile
Smartphone Windows Mobile
Smartphone Windows Mobile
Smartphone Windows Mobile
 
071 SPC0413
071 SPC0413071 SPC0413
071 SPC0413
 
wedding TV coverage, 060511
wedding TV coverage, 060511wedding TV coverage, 060511
wedding TV coverage, 060511
 
innovation vouchers - approved
innovation vouchers - approvedinnovation vouchers - approved
innovation vouchers - approved
 
CV - Bart Schoonvliet - ENG
CV - Bart Schoonvliet - ENGCV - Bart Schoonvliet - ENG
CV - Bart Schoonvliet - ENG
 
Chiara María Valdez Ayala
Chiara María Valdez AyalaChiara María Valdez Ayala
Chiara María Valdez Ayala
 
GOUD_inkijkexemplaar
GOUD_inkijkexemplaarGOUD_inkijkexemplaar
GOUD_inkijkexemplaar
 
карина 13 гр
карина 13 гркарина 13 гр
карина 13 гр
 
947 futurefact 2014
947 futurefact 2014947 futurefact 2014
947 futurefact 2014
 
Endomitriosis - ATCM Journal
Endomitriosis - ATCM JournalEndomitriosis - ATCM Journal
Endomitriosis - ATCM Journal
 
Home Health Check Up MissionREV.1-27-12
Home Health Check Up MissionREV.1-27-12Home Health Check Up MissionREV.1-27-12
Home Health Check Up MissionREV.1-27-12
 
Las tics en el turismo
Las tics en el turismoLas tics en el turismo
Las tics en el turismo
 
Eabametoong and the NWMO engagement report
Eabametoong and the NWMO engagement reportEabametoong and the NWMO engagement report
Eabametoong and the NWMO engagement report
 
บริการต่างๆบนอินเตอร์เน็ต
บริการต่างๆบนอินเตอร์เน็ตบริการต่างๆบนอินเตอร์เน็ต
บริการต่างๆบนอินเตอร์เน็ต
 

Ähnlich wie Excel functionssimplymeasured

Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statisticszavenger
 
Ms Excel- Its uses & Functions.pptx
Ms Excel- Its uses & Functions.pptxMs Excel- Its uses & Functions.pptx
Ms Excel- Its uses & Functions.pptxVishal Doke
 
MS Excel_ICT.pptx
MS Excel_ICT.pptxMS Excel_ICT.pptx
MS Excel_ICT.pptxehmzty
 
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxLesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxCristineJoyVillajuan
 
Excel for SEO -from Distilled UK
Excel for SEO -from Distilled UKExcel for SEO -from Distilled UK
Excel for SEO -from Distilled UKEldad Sotnick-Yogev
 
10 Excel Tips To Take Your Modeling From Good To Great
10 Excel Tips To Take Your Modeling From Good To Great10 Excel Tips To Take Your Modeling From Good To Great
10 Excel Tips To Take Your Modeling From Good To GreatChase R. Morrison
 
ADVANCED EXCEL COURSE IN LAXMI NAGAR
ADVANCED EXCEL COURSE IN LAXMI NAGARADVANCED EXCEL COURSE IN LAXMI NAGAR
ADVANCED EXCEL COURSE IN LAXMI NAGARRajatSharma210839
 
The 4 Step Excel 2013 Functions Guide
The 4 Step Excel 2013 Functions GuideThe 4 Step Excel 2013 Functions Guide
The 4 Step Excel 2013 Functions GuideHow To Technology
 
Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Jesus Rances
 
Spreadsheet program processes and carries out calculations on.pptx
Spreadsheet program processes and carries out calculations on.pptxSpreadsheet program processes and carries out calculations on.pptx
Spreadsheet program processes and carries out calculations on.pptxEvieveneg Ollirom
 
L4_Intro_excel using excel and spreadsheets
L4_Intro_excel using excel and spreadsheetsL4_Intro_excel using excel and spreadsheets
L4_Intro_excel using excel and spreadsheetstrishacacho29
 
excel 101 formulas.pdf
excel 101 formulas.pdfexcel 101 formulas.pdf
excel 101 formulas.pdfVilas Kharat
 
100 Excel Functions you should know in one handy PDF.pdf
100 Excel Functions you should know in one handy PDF.pdf100 Excel Functions you should know in one handy PDF.pdf
100 Excel Functions you should know in one handy PDF.pdfMohammad Shaar
 
ICT: SPREADSHEETS (MICROSOFT EXCEL)
ICT: SPREADSHEETS (MICROSOFT EXCEL)ICT: SPREADSHEETS (MICROSOFT EXCEL)
ICT: SPREADSHEETS (MICROSOFT EXCEL)Aj Mappala
 

Ähnlich wie Excel functionssimplymeasured (20)

Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statistics
 
Ms Excel- Its uses & Functions.pptx
Ms Excel- Its uses & Functions.pptxMs Excel- Its uses & Functions.pptx
Ms Excel- Its uses & Functions.pptx
 
MS Excel_ICT.pptx
MS Excel_ICT.pptxMS Excel_ICT.pptx
MS Excel_ICT.pptx
 
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxLesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
 
Excel for SEO -from Distilled UK
Excel for SEO -from Distilled UKExcel for SEO -from Distilled UK
Excel for SEO -from Distilled UK
 
Excel intermediate
Excel intermediateExcel intermediate
Excel intermediate
 
08 ms excel
08 ms excel08 ms excel
08 ms excel
 
10 Excel Tips To Take Your Modeling From Good To Great
10 Excel Tips To Take Your Modeling From Good To Great10 Excel Tips To Take Your Modeling From Good To Great
10 Excel Tips To Take Your Modeling From Good To Great
 
ADVANCED EXCEL COURSE IN LAXMI NAGAR
ADVANCED EXCEL COURSE IN LAXMI NAGARADVANCED EXCEL COURSE IN LAXMI NAGAR
ADVANCED EXCEL COURSE IN LAXMI NAGAR
 
Get more from excel
Get more from excelGet more from excel
Get more from excel
 
The 4 Step Excel 2013 Functions Guide
The 4 Step Excel 2013 Functions GuideThe 4 Step Excel 2013 Functions Guide
The 4 Step Excel 2013 Functions Guide
 
Uses of excel
Uses of excelUses of excel
Uses of excel
 
Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Empowerment Technologies - Module 5
Empowerment Technologies - Module 5
 
Spreadsheet program processes and carries out calculations on.pptx
Spreadsheet program processes and carries out calculations on.pptxSpreadsheet program processes and carries out calculations on.pptx
Spreadsheet program processes and carries out calculations on.pptx
 
Excel tips and tricks you should try
Excel tips and tricks you should tryExcel tips and tricks you should try
Excel tips and tricks you should try
 
L4_Intro_excel using excel and spreadsheets
L4_Intro_excel using excel and spreadsheetsL4_Intro_excel using excel and spreadsheets
L4_Intro_excel using excel and spreadsheets
 
excel 101 formulas.pdf
excel 101 formulas.pdfexcel 101 formulas.pdf
excel 101 formulas.pdf
 
100 Excel Functions you should know in one handy PDF.pdf
100 Excel Functions you should know in one handy PDF.pdf100 Excel Functions you should know in one handy PDF.pdf
100 Excel Functions you should know in one handy PDF.pdf
 
ICT: SPREADSHEETS (MICROSOFT EXCEL)
ICT: SPREADSHEETS (MICROSOFT EXCEL)ICT: SPREADSHEETS (MICROSOFT EXCEL)
ICT: SPREADSHEETS (MICROSOFT EXCEL)
 
Excel trick
Excel trickExcel trick
Excel trick
 

Mehr von central.zone

Gd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esintGd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esintcentral.zone
 
Gd instagram forbusiness-esint
Gd instagram forbusiness-esintGd instagram forbusiness-esint
Gd instagram forbusiness-esintcentral.zone
 
201508 answersguide
201508 answersguide201508 answersguide
201508 answersguidecentral.zone
 
The 2015 facebook industry report
The 2015 facebook industry reportThe 2015 facebook industry report
The 2015 facebook industry reportcentral.zone
 
The complete guide to analytics on facebook
The complete guide to analytics on facebookThe complete guide to analytics on facebook
The complete guide to analytics on facebookcentral.zone
 
Novel images win fans hearts on facebook simply measured
Novel images win fans hearts on facebook   simply measuredNovel images win fans hearts on facebook   simply measured
Novel images win fans hearts on facebook simply measuredcentral.zone
 
Crafting the perfect facebook post simply measured
Crafting the perfect facebook post   simply measuredCrafting the perfect facebook post   simply measured
Crafting the perfect facebook post simply measuredcentral.zone
 
Tweet smarter v2_ebook_final_es.compressed_0
Tweet smarter v2_ebook_final_es.compressed_0Tweet smarter v2_ebook_final_es.compressed_0
Tweet smarter v2_ebook_final_es.compressed_0central.zone
 
Tips for-the-social-marketer-cheat-sheets
Tips for-the-social-marketer-cheat-sheetsTips for-the-social-marketer-cheat-sheets
Tips for-the-social-marketer-cheat-sheetscentral.zone
 
Think y productos y servicios
Think y   productos y serviciosThink y   productos y servicios
Think y productos y servicioscentral.zone
 
Tgf 2015 social media - how to engage
Tgf 2015   social media - how to engageTgf 2015   social media - how to engage
Tgf 2015 social media - how to engagecentral.zone
 
Spanish estado inbound-marketing_latinoamerica_2015_-_2016
Spanish estado inbound-marketing_latinoamerica_2015_-_2016Spanish estado inbound-marketing_latinoamerica_2015_-_2016
Spanish estado inbound-marketing_latinoamerica_2015_-_2016central.zone
 
Pdf 2015 us_digitalfutureinfocus_engus_mar2015
Pdf 2015 us_digitalfutureinfocus_engus_mar2015Pdf 2015 us_digitalfutureinfocus_engus_mar2015
Pdf 2015 us_digitalfutureinfocus_engus_mar2015central.zone
 
Los centritantes delariva
Los centritantes delarivaLos centritantes delariva
Los centritantes delarivacentral.zone
 
Gd instagram hs-quickstart-esint (1)
Gd instagram hs-quickstart-esint (1)Gd instagram hs-quickstart-esint (1)
Gd instagram hs-quickstart-esint (1)central.zone
 
Gd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esintGd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esintcentral.zone
 
Ebook inboung marketing_v4
Ebook inboung marketing_v4Ebook inboung marketing_v4
Ebook inboung marketing_v4central.zone
 
Dirigir equipo-servicio al cliente
Dirigir equipo-servicio al clienteDirigir equipo-servicio al cliente
Dirigir equipo-servicio al clientecentral.zone
 

Mehr von central.zone (20)

Gd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esintGd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esint
 
Gd instagram forbusiness-esint
Gd instagram forbusiness-esintGd instagram forbusiness-esint
Gd instagram forbusiness-esint
 
201508 answersguide
201508 answersguide201508 answersguide
201508 answersguide
 
The 2015 facebook industry report
The 2015 facebook industry reportThe 2015 facebook industry report
The 2015 facebook industry report
 
The complete guide to analytics on facebook
The complete guide to analytics on facebookThe complete guide to analytics on facebook
The complete guide to analytics on facebook
 
Novel images win fans hearts on facebook simply measured
Novel images win fans hearts on facebook   simply measuredNovel images win fans hearts on facebook   simply measured
Novel images win fans hearts on facebook simply measured
 
Crafting the perfect facebook post simply measured
Crafting the perfect facebook post   simply measuredCrafting the perfect facebook post   simply measured
Crafting the perfect facebook post simply measured
 
Twitter
TwitterTwitter
Twitter
 
Tweet smarter v2_ebook_final_es.compressed_0
Tweet smarter v2_ebook_final_es.compressed_0Tweet smarter v2_ebook_final_es.compressed_0
Tweet smarter v2_ebook_final_es.compressed_0
 
Tips for-the-social-marketer-cheat-sheets
Tips for-the-social-marketer-cheat-sheetsTips for-the-social-marketer-cheat-sheets
Tips for-the-social-marketer-cheat-sheets
 
Think y productos y servicios
Think y   productos y serviciosThink y   productos y servicios
Think y productos y servicios
 
Tgf 2015 social media - how to engage
Tgf 2015   social media - how to engageTgf 2015   social media - how to engage
Tgf 2015 social media - how to engage
 
Spanish estado inbound-marketing_latinoamerica_2015_-_2016
Spanish estado inbound-marketing_latinoamerica_2015_-_2016Spanish estado inbound-marketing_latinoamerica_2015_-_2016
Spanish estado inbound-marketing_latinoamerica_2015_-_2016
 
Pdf 2015 us_digitalfutureinfocus_engus_mar2015
Pdf 2015 us_digitalfutureinfocus_engus_mar2015Pdf 2015 us_digitalfutureinfocus_engus_mar2015
Pdf 2015 us_digitalfutureinfocus_engus_mar2015
 
Los centritantes delariva
Los centritantes delarivaLos centritantes delariva
Los centritantes delariva
 
Guide globallocal
Guide globallocalGuide globallocal
Guide globallocal
 
Gd instagram hs-quickstart-esint (1)
Gd instagram hs-quickstart-esint (1)Gd instagram hs-quickstart-esint (1)
Gd instagram hs-quickstart-esint (1)
 
Gd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esintGd instagram hs-quickstart-esint
Gd instagram hs-quickstart-esint
 
Ebook inboung marketing_v4
Ebook inboung marketing_v4Ebook inboung marketing_v4
Ebook inboung marketing_v4
 
Dirigir equipo-servicio al cliente
Dirigir equipo-servicio al clienteDirigir equipo-servicio al cliente
Dirigir equipo-servicio al cliente
 

Kürzlich hochgeladen

Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...amitlee9823
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Delhi Call girls
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...shivangimorya083
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...SUHANI PANDEY
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceDelhi Call girls
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxolyaivanovalion
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...shambhavirathore45
 
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Delhi Call girls
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxMohammedJunaid861692
 

Kürzlich hochgeladen (20)

Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...Vip Model  Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
Vip Model Call Girls (Delhi) Karol Bagh 9711199171✔️Body to body massage wit...
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptx
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
 
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
 

Excel functionssimplymeasured

  • 1. Excel Functions Every Community Manager Should Know Tips for data manipulation from our Analysts
  • 2. 1 Excel Functions Every Community Manager Should Know Tips for data manipulation from our Analysts Excel can be intimidating Let’s face it, without functions Excel is just a wonderful way to store information. With functions, however, Excel becomes an amazing tool for manipulating and making sense out of large amounts of data. That’s why we love Excel so much. With a few little functions we can take a massive range of data, mine a wealth of information out of it, and turn the data into informed action items. Of course, the thought of trying to string together complex functions in Excel is enough to send anybody into a cold sweat. We couldn’t provide the depth of data or the level of insight offered in our reports without our awesome team of data Analysts who bring it all together. That’s why we asked them to walk us through some of the basic Excel functions they use on a daily basis – so that data ranges are easier to manipulate even if you’re not an Excel wizard. We created this list with community managers in mind, and we broke each function down in a way that’s easy to understand. Our Analysts’ guide to Excel functions So what exactly are Excel functions? Functions show a relation between a set of inputs and a set of outputs, where each input has exactly one output. In Excel, functions take the data from your workbook (the input) and turn them into information (the output) through a specific syntax. For example, you may be familiar with something like SUM.
  • 3. Syntax refers to the way the function is ordered, so that it returns a result. Each function starts with an equal sign (=) and are followed by the name of the function itself. Example: =SUM(A1, A2) This means that the cell you entered this function into will add the contents of cell A1 and A2. Pretty easy, right? Now, we’ll try something a little more complex. Say you want to find out how many days are in a given reporting period. You want to do this to figure out the average engagement within that period – say, Q1 of 2014. Without using a function, you could do this by entering the following into an Excel sheet: Here, you’re telling Excel to find out how many days there are between 1/1 and 4/1. You already have the dates in date format in certain cells, and Excel is just subtracting one date from another. Here, Excel accounts for the number of days in February (there were 28) and returns the value 90. There were 90 days in your reporting period. You can also do this using the DATE function. You might also use the DAYS function. Note the specific way each date is formatted. In the first case, the date reads: year, month, day. In the second case, you must put the date in quotation marks. The Syntax of the function DATE is: =DATE(2014,4,1)-DATE(2014,1,1) The Syntax for the DAYS function is: =DAYS(“4/1/14”,”1/1/14”) The syntax of the function SUM is: =SUM(this, plus this) 2
  • 4. These functions are all particularly useful when you’re trying to get a day count to average something like engagement over a period of time. You would use a function similar to: =A1/(DAYS(“4/1/14”, “1/1/14”)) Where A1 is your engagement number and your date range is from January 1 to April 1. You can do the same thing with hours. In the example above, the hour function returns the value 14 – the number of hours between 8:00 am, and 10:00 pm. The cells that are a time value are formatted as a time value in the number formatting options. Alternately, enter your time range into the function using quotation marks around the numbers like this: =HOUR(“8:00 AM”,”10:00 PM”) Now what if you want to find the week number of the year to compare two weeks worth of engagement? Use the WEEKNUM function to find out what number week (1-52) a certain day is on. The Syntax for the HOUR function is: =HOUR(“start time”, “end time”) The Syntax for the WEEKNUM formula is: =WEEKNUM(“date”) 33
  • 5. Here, the date 3/14 falls in week 11 and the date 3/31 falls in week 14 shown on the calendar below. The MONTH function can be used in a similar way. For a reporting period, MONTH is the function that allows you to, for example, determine that your highest engagement happened in “March”. These functions are pretty easy and chances are you’ve used them before; but you could do so much more with functions. You could tell Excel to discover the maximum engagement within a time frame for your Facebook Page, or ask for the handle of the Twitter user who has the most engagement. How do you do that? WEEK WEEK Let’s ask the Analysts 4
  • 7. Functions Lori Uses: IF is probably the function I use most. Use this function when you have True/False criteria and you want to do one thing when the criteria are True and something different when the criteria are False. Example: =IF(A1>10, “yes”, “no”) In the above example, if the value in cell A1 is greater than 10, the function would return the word “yes”. This comes in handy when you want to find specific data. For instance, there is a report setting in the Simply Measured app where our customers can decide if they want to include User Posts in their Facebook Engagement. I use an IF statement to decide if I should use the function that includes User Posts in Engagement, or if I should use the function that excludes User Posts in Engagement. This comes in handy when you want to count or add cells based on specific data. COUNTIF lets you count items based on a set of criteria and SUMIF lets you sum items based on a set of criteria. Example: =COUNTIF(A2:A5,”apples”) Here, Excel will count how many cells in the A column contain the value “apples”. Example: =SUMIF(B2:B25,”>5”) In this function, if the value of a cell in the B column is greater than 5, Excel will add those values together. Who: Lori Williams Her story: Hi, I’m Lori! I took a long and winding road to end up at Simply Measured. It involved a LOT of school, a little bit of nonprofit work, and eventually giving in to the fact that I am a data nerd and a tech geek. I love building reports that make social data easier to understand and more useful for our customers. The syntax of the IF function is: =IF(logic test, value if true, value if false) The Syntax for SUMIF is: =SUMIF(range, criteria) 55
  • 8. You could find out how many Tweets you sent between April 10 and April 15 with COUNTIF. If you wanted to find the total engagement on those same Tweets, you would add up all the retweets, mentions, @replies and favorites in between those two dates using a SUMIF. IFERROR tells Excel what value to show if there is a problem with a function. We use IFERROR so our reports look nice even when there isn’t much data. Say you have a calculation for the percent of Tumblr posts that were quotes, but for the time period you’re looking at, you didn’t make any posts. In Excel, 0 divided by 0 gives a #DIV/0 error. You would use IFERROR to show “0” instead of “#DIV/0”. Try it yourself, substituting “#DIV/O” for “value”, and “O” for “value_if_error”. NETWORKDAYS counts the number of workdays between two dates. I use this one to find out things like how many days did it take us to create our last project? Or how many days have I worked at Simply Measured? The holidays value is optional; it’s a way to exclude dates whether or not they’re actually holidays. To do this, you would list those dates in a column, and add them as a range in parentheses to exclude them. These Excel functions are easy to use and allow you to pinpoint data that you can build on later! The Syntax for IFERROR is: =IFERROR(value, value_if_error) The Syntax for NETWORKDAYS is: =NETWORKDAYS(start_date, end_date, [holidays]) 6
  • 9. Functions Deepti Uses: MAX/MIN and LARGE/SMALL are some of the simplest Excel functions. MAX allows you to find the highest number in a range while MIN returns the lowest number. Let’s say you have the daily count of fans gained by a Facebook Page and want to find out the highest and lowest gain in fans. You can easily calculate that using the functions MAX and MIN. If the fans gained are listed in rows A1 to A30, the function for highest gain in fans would be =MAX(A1:A30) and the function for lowest gain in fans would be =MIN(A1:A30). LARGE and SMALL do something similar to MAX and MIN, but go a step further. Using LARGE and SMALL, you can choose where in the range you want to find your value. For example, if you wanted to find the 3rd largest number in a range, the function would be =LARGE(A1:A30, 3) and it would return the 3rd largest number in the range. Small does exactly the opposite. =SMALL(A1:A30, 3) returns the 3rd smallest number in the range.   This is helpful in finding out data like which campaigns drove the most fan acquisition, or which Tweets had the highest engagement via mentions and retweets. The best part is: they’re easy to use! Who: Deepti Dhanjani Her story: I went from being a Simply Measured customer who used our reports to building awesome reports for others to use. I’ve always been better with numbers than with words and I love that I get to manipulate data into meaningful insights for our customers. The Syntax for these functions is easy: =MAX(range) =MIN(range) 7 Use the following syntax for these functions: =LARGE(range, sort criteria) =SMALL(range, sort criteria) 7
  • 10. Functions Vikram Uses: The tools that I use quite often are actually a collection of similar functions:  LEFT, RIGHT, MID, and SEARCH. for example: =RIGHT(“Simply Measured is the best”, 4) returns the word “best” =RIGHT(A1,4) returns the last four characters in the cell A1 =LEFT(“Simply Measured is the best”, 6) returns “Simply” Here’s a visual example of how these functions work. =LEFT(I25,16) returns the first sixteen characters in the cell I25. Similarly, you can choose to isolate text or data from the middle of the cell using the MID function. Examples of Excel MID function: =MID(“hello”,2,3) returns “ell” =MID(“hello”,2,100) returns “ello” Obviously “hello” contains fewer than 100 characters. The MID function in our example would return up to 100 characters. Who: Vikram Nayani His Story: Hey there!  My name is Vikram and I’m the newest addition to our incredible Analyst team.  My main focus at Simply Measured is helping to create the reports that our customers love so much.  Understanding our customer’s pain points and creating solutions that help alleviate them is an awesome feeling, and I love that I help make their lives a little easier.   The Syntax for RIGHT is: =RIGHT(from this text, this many letters) Syntax of MID: =MID(from this text, start here, return this many letters) These same rules apply to the =LEFT function: =LEFT(from this text, this many letters) 8
  • 11. You can also search for specific criteria within cells using the function SEARCH. Examples of Excel SEARCH function: =SEARCH(“e”,”hello”,1) returns a value of 2, which is the location of “e” in the string “hello”. =SEARCH(“m”,”hello”,1) returns an “ERROR” warning because there is no “m” in “hello”) So how are these helpful?  Let’s use a real world example: by now we are all familiar with Gmail’s new tabbed interface.  What if we wanted to tweak some of our emails to customers to make sure that they get put in the “Primary” tab and not the “Promotions” tab? The first step would likely be figuring out which of our contacts are Gmail users. To do this, we’ll use LEFT/RIGHT/MID and SEARCH. Any email ID contains 2 parts – user name and domain name. For example, in this email id - ImportantCustomer@gmail. com - Important Customer is the username and gmail.com is the domain. The domain always starts after “@”, so we need to figure out a way to rule out that portion of the text.  This is where our friends RIGHT and SEARCH come in (with a special appearance by LEN). LEN returns the length of any string of text.   Example: =LEN(“Important.Customer@gmail.com”) will return 28.   If you remember from the description, the Excel RIGHT function will let you cut a portion of text from the right side of the text. Example: =RIGHT(“Long”,2) will give you ng. To get the email domain name, we need to get all the letters to right of email ID after the“@” symbol. How do we find that position in text? We use the SEARCH function. The SEARCH function gives the location of one text in another. The Syntax for this function is: =SEARCH(this, in this text, [start here]). 99
  • 12. Example: =SEARCH(“@”, “Important.Customer@gmail.com”,1) will return 19. 19 is the location of the “@” in “Important.Customer@gmail.com, when you start counting from position 1.   SEARCH will return an error (#VALUE!) if the text you are trying to find is not available. Example: =SEARCH(“c”, “Vikram”, 1) will return #VALUE! because there is no “c” in Vikram. Now we know how these work, let’s go find the domain name from the e-mail address. Assuming cell A1 contains “Important.Customer@gmail.com”, the function for getting the domain name is: =RIGHT(A1,LEN(A1)-SEARCH(“@”,A1,1)) This will return the value gmail.com. (Go ahead and try it!  Open up Excel and type the e-mail address in cell A1, and then the function anywhere else in the sheet.)  So what did we just do?  The LEN function gave us the total number of characters in our text.  The SEARCH function then told us what position the @ symbol was located at in our text.  If we subtract the two, we will get the total number of characters after the @ symbol, and then we put that into RIGHT in order to get the domain name (the number of characters after the “@” symbol).  These functions have helped me out of plenty of text related Excel jams (they continue to do so, actually), and hopefully they’ll do the same for you.  Happy Excel-ing!   10
  • 13. Functions David Uses: A lot of what a digital analyst does is quantitative, but virtually every piece of content we deal with is at least partially text--whether it’s a Tweet, an Instagram caption, a YouTube video title, or a username. A few basic tricks in dealing with text can make your life a lot easier. Let me introduce you to LEN and SUBSTITUTE. These two functions are great to have in your toolbox. LEN returns the number of characters in a string of text. SUBSTITUTE replaces a sequence of characters with another sequence of characters. It requires three inputs (called “arguments”): your reference text, the sequence of characters being replaced, and the sequence of characters you’re replacing it with. Be careful, though—SUBSTITUTE is case-sensitive in deciding which strings to replace. So we’re having lots of fun measuring and replacing text strings, but if you put them together, LEN and SUBSTITUTE can do some pretty heavy lifting. For example, what if you want to know how many times a word or phrase occurs in a bunch of text? There isn’t a straightforward way to do that in Excel. SEARCH can tell you whether or not your word or phrase occurs, and what its relative position is, but it will only find the first occurrence. COUNTIFS can check for a text string across a range of cells and return a count of the cells that include the string, but again, it won’t tell you anything about multiple occurrences in a single cell. But check this out: Who: David Lukas His Story: I’m a Senior Analyst at Simply Measured. Before I came here, I worked in a variety of analyst roles in investment banking and asset management. I love being part of a company that is building real products that solve real problems, and the fact that we’re doing it with data and analytics pretty much makes it my dream job. I’m a Seattle native; I went to UW (woof!), and Alton Brown and Ron Swanson are two of my heroes. The Syntax for LEN is: =LEN(text) 11 The Syntax for SUBSTITUTE is: =SUBSTITUTE(text, “value to replace”, “value to replace it with”) 11
  • 14. I know! I could have sworn Jim Mora said “playoffs” a dozen times, but it was only three! What we’re doing here might look confusing, but the hardest part is really just keeping the different sets of parentheses straight. It’s pretty simple if you break it into steps: 1. =LEN(B2) tells us the total number of characters in our original text. 2. =LEN(SUBSTITUTE(LOWER(B2),C2,””)) is taking our original text in B2, making it all lowercase using LOWER (to avoid the case-sensitivity issue mentioned above), searching it for the string in cell C2 (“playoffs”), and replacing every instance of that string with “”, which is essentially deleting it (yes, SUBSTITUTE can do that!). Now subtract 2) from 1). This number is equal to the total mentions of “playoffs” times the length of the word “playoffs.” Finally, we just divide the whole thing by LEN(C2), the number of characters in “playoffs”, to get the number of times our search term was mentioned. There are a ton of other ways you can use these two functions for operations that don’t directly involve string length or substitution. If you find yourself floundering with text parsing in Excel, and you intuitively know what it is you’re trying to accomplish but just can’t think of how to get there, there’s a decent chance that LEN, SUBSTITUTE, or both will be part of your solution. 12
  • 15. Functions Alex Uses: We build all of our reports natively in Excel, so we have to use every tool in Excel’s workbench to make our reports as robust as possible. One of tools that we use constantly is the function combination INDEX/MATCH. If you’re familiar with the VLOOKUP function you already basically understand how INDEX/MATCH works. It looks for a value in one column of an array and finds the user-defined corresponding value in an adjacent column. However, this where the similarities end. The primary difference between the two operations is that INDEX/MATCH is really two combinations rather than one, and in almost every case INDEX/MATCH is superior to either VLOOKUP or it’s Luigi, HLOOKUP. Let’s start with the syntax of a typical INDEX/MATCH operation. Array is the column that you want to return data from, and row number will be the MATCH function. Lookup value is the key of the thing you are using to find corresponding information for, and lookup array is the column or array where that key value resides. The match type is optional, but usually we set it to 0 to specify we want an exact match. When we replace the row numbers argument in the INDEX function with MATCH, the result looks something like this: =INDEX(array, MATCH(lookup value, lookup array, match type)) The MATCH function will return the row of the key that we want to find corresponding data for, and the INDEX will take care of actually moving across the row to find the corresponding data. This can be a bit confusing but TRUST ME, once you understand INDEX/MATCH you will never go back to VLOOKUP again! Let’s think of an example. Who: Alex Snider His Story: My name is Alex Snider and I’m one of the Analysts here at Simply Measured. I’ve loved looking at charts and data since as long as I can remember and I came to Simply Measured with a background in electoral research and analysis. My (amazingly cool) job at Simply Measured is to help design and build reports that are fully dynamic and scalable. This means that our customers can guide their digital marketing programs with informed data. The syntax for INDEX is: =INDEX(array, row numbers) The syntax for MATCH is: =MATCH(lookup value, lookup array, match type) 13
  • 16. The function for this problem would read: =INDEX(B:B, MATCH(“Washington”,A:A,0)) The important thing to remember is that you always enter the column of data you want back FIRST. So why is INDEX/MATCH so much better than VLOOKUP if they essentially perform the same function? First, because INDEX/MATCH typically only looks at two columns to find the lookup data rather than an entire multi-column array, INDEX/MATCH can substantially lower the processing load on Excel. Another benefit is that, unlike VLOOKUP, INDEX/MATCH can work in any direction; you don’t need to have your identifying key on the left and then your lookup data on the right. INDEX/MATCH can work left-to-right, right-to-left, inside-to-outside, across space-time, etc. All you have to do is follow the rules (put the data you want returned FIRST) and it should work like a dream. Finally, because INDEX/MATCH doesn’t rely on the static column number arguments inherent in VLOOKUP, you never have to worry about adding/subtracting/rearranging columns and messing up your lookup argument. INDEX/MATCH couldn’t care less about the space between your key and what you’re trying to find, it just hones in on the data you want like a shark to blood. We use INDEX/MATCH extensively in our reports in a ton of different ways. A good use-case example that could be useful to a community manager is to help find the Tweet with the most engagement. Assume we have a column of all of our Tweets and a column with the engagement numbers of each Tweet. Imagine a spreadsheet with two columns: in Column A are all 50 of the United States in alphabetical order. In Column B we have theB we have the population of each state. Now let’s say we want to know the population of Washington, but we are feeling particularly lazy today and can’t be bothered to scroll all the way down the page to find Washington so we want to use INDEX/MATCH to perform the work for us. The function for this problem would read: =INDEX(B:B, MATCH(“Washington”,A:A,0)) The important thing to remember is that you always enter the column of data you want back FIRST. So why is INDEX/MATCH so much better than VLOOKUP if they essentially perform the same function? First, because INDEX/MATCH typically only looks at two columns to find the lookup data rather than an entire multi-column array, INDEX/MATCH can substantially lower the processing load on Excel. Another benefit is that, unlike VLOOKUP, INDEX/MATCH can work in any direction; you don’t need to have your identifying key on the left and then your lookup data on the right. INDEX/MATCH can work left-to-right, right-to-left, inside-to-outside, across space-time, etc. All you have to do is follow the rules (put the data you want returned FIRST) and it should work like a dream. Finally, because INDEX/MATCH doesn’t rely on the static column number arguments inherent in VLOOKUP, you never have to worry about adding/subtracting/rearranging columns and messing up your lookup argument. INDEX/MATCH couldn’t care less about the space between your key and what you’re trying to find, it just hones in on the data you want like a shark to blood. We use INDEX/MATCH extensively in our reports in a ton of different ways. A good use-case example that could be useful to a community manager is to help find the Tweet with the most engagement. Assume we have a column of all of our Tweets and a column with the engagement numbers of each Tweet. 6.897 million 3.899 million 1.5957 million 14
  • 17. The function for this example would be: =INDEX(tweet.engagement.column,MATCH(MAX(tweet.text.column),tweet.text.column,0)) By working in a MAX function into the MATCH element of the function, we can return the text of the Tweet that had the most (MAX) engagement. If you really want to be an Excel baller and step your data analysis up to the next level, INDEX/MATCH is an absolute must know! Why use Excel tools? As our Analysts have shown, Excel does an excellent job (pun intended!) of sorting and finding data, reducing the time it takes to analyze large amounts of information. Our reports are built in Excel because not only can you store significant amounts of data, but Excel will also help you pinpoint data trends that you otherwise may not have known. Excel gives you the option to build charts and graphs based on your data, in a way that tells your story across all your social media networks. Of course, don’t just take our word for it; try your hand at Excel magic on one of our free reports. 15
  • 18. SIMPLY MEASURED SAMPLE REPORTS Simply Measured provides a measurement and reporting solution that aggregates social media data and web analytics from more than a dozen sources and presents it in a single dashboard. We’ve provided samples of reports used by more than 30 percent of the top 100 global brands and over 80,000 users who are Simply Measured customers. Answer questions about Facebook Page performance and engagement, as well as fans, posts, “Likes”, comments and engagement trends. Dig into the most effective posts and the impact they’ve had on your Page and your audience. Want to try Simply Measured? Request a Free 14 Day Trial 16