Maddi, Author at Go Fish Digital https://gofishdigital.com/blog/author/maddi/ Fri, 01 Sep 2023 12:42:19 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.3 https://gofishdigital.com/wp-content/uploads/2021/09/cropped-gfdicon-color-favicon-1-32x32.png Maddi, Author at Go Fish Digital https://gofishdigital.com/blog/author/maddi/ 32 32 5 Functions of Excel/Sheets That Every Professional Should Know https://gofishdigital.com/blog/5-excel-functions-you-should-know/ https://gofishdigital.com/blog/5-excel-functions-you-should-know/#respond Fri, 01 Sep 2023 12:30:23 +0000 https://gofishdigital.com/5-excel-functions-you-should-know/ I first used Microsoft Excel as a teenager, fumbling through receipts as I tried to organize numbers into a spreadsheet and later into QuickBooks. I was helping my dad’s friend prepare for his tax return, and I got a few bucks out of the deal. I’m not sure why he trusted a 16-year-old (with zero […]

5 Functions of Excel/Sheets That Every Professional Should Know is an original blog post first published on Go Fish Digital.

]]>
I first used Microsoft Excel as a teenager, fumbling through receipts as I tried to organize numbers into a spreadsheet and later into QuickBooks. I was helping my dad’s friend prepare for his tax return, and I got a few bucks out of the deal. I’m not sure why he trusted a 16-year-old (with zero spreadsheet experience) to handle something like this. I couldn’t help but think, “He just gave me this job to be nice,” as I yelled at Clippy, the paper clip character, for not getting out of the way after it failed to help me as it claimed it would.

Related Content:

Now, many years after that, I look back and am grateful for getting that then-frustrating task. It was the foundation for a career that started in .XLSX, and I use this file type daily at Go Fish Digital. On our content marketing team, we often leverage data for our clients’ campaigns. This allows us to produce compelling material for journalists to use in their stories, and consequently earn backlinks and news coverage for our clients.

Even if you aren’t in a data-heavy field like marketing or SEO, a general understanding of spreadsheets has become essential for any working professional. Microsoft Excel and Google Sheets are the two major tools you’ll encounter and are structured very similarly. Below is a guide to five functions of either tool you can use to successfully manage data.

What Are The 5 Basic Excel Functions?

These are the 5 basic Excel functions that everyone should know:

  1. The VLookup Function
  2. The Concatenate Function
  3. Text to Columns
  4. Remove Duplicates
  5. Pivot Tables

 

VLookup Formula

Example:

You have a spreadsheet of burger shops, and each individual one is listed out in column A, with their street address, city, state, owner name, annual sales, and other information in adjacent columns.

Among your long list of burger shops, there are only a handful you need information about. You could theoretically scroll through the spreadsheet or try to sort/filter the list, or you could use a Vlookup function to pull out the exact pieces of information you need. There are many use cases for this formula, and the more you become familiar with it, the more often you’ll find ways to use it to save yourself some time.

How To Set It Up:

  • Create a new table in another tab if you don’t have one created already.

  • In the first column, you’ll have the “lookup value,” which is the piece of information you’re telling the formula to look for in your main spreadsheet. This information will need to be in the left-most column of the table you’re telling the formula to look at, as it is in the first screenshot above.
  • Then add the formula to the adjacent cell as follows:

=VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup])

lookup_value: The cell where the formula can find the information that it needs to look up in your primary table. In this case, when putting the formula in cell B2, this value would be A2.

table_array: The table the formula should search and pull information from. Since my table of burger shops is on the tab named “Burger Shops” and I have data in columns up to column H, this value would be ‘Burger Shops’!A:H.

col_index_num: This is your way of telling the formula what information you want it to bring back for you. In this example, I’m looking for the phone number, which is in column F in my main table. F is the 6th letter in the alphabet, and so this value in the formula will be 6.

[range_lookup]: This is a logical section of the formula, where the options are TRUE or FALSE. If you put TRUE, the formula will return a value based on the closest match to your lookup value, even if it’s not the exact one. If you put FALSE, then it’ll only return a value if it finds the exact lookup value you referenced. In most cases, and in this burger shop example, we’ll want to put FALSE

Final formula:

=VLOOKUP(A2,’Burger Shops’!A:H,3,FALSE)

 

 

Concatenate Formula

Example:

Continuing the burger shop example, let’s say you want to have the city and state in one column. Perhaps you want to analyze the data by city, but there are cities with the same name in different states so you need them combined. The concatenate function is an incredibly easy formula that you can use to combine the contents of different cells.

How To Set It Up:

  • First, you’ll need to add a new column to your table, which is where the new combined data will live

  • Next, you’ll add the formula as follows:

=CONCATENATE(text1,text2,…)

You can type text and/or reference cells in this formula, which makes it very versatile. To add text, you’ll just type in what you want and add quotation marks around it. In this example, we’ll want to add a comma and space between the city and state.

Final formula:

=CONCATENATE(C2,”, “,D2)

GFD_DisplayCampaigns_GFDBlog_1200x628

 

Text to Columns

Example:

Let’s say you have the opposite problem as the previous example – you have city and state combined for each burger shop, but you’d like them in separate columns. The “Text to Columns” function is a simple way of breaking data into multiple columns based on certain criteria. It can separate text based on a space or a certain delimiter, such as a dash or comma.

How To Set It Up:

  • Add a column to the right of the column you’re separating (or multiple columns if you’re separating the data into more than two sections) like in the screenshot below

  • Highlight the entire column with your text to be separated (in this case it’s column C)
  • Click the “Data” tab in the toolbar
  • Click “Text to Columns”
  • Confirm that “Delimited” is selected
  • Click “Next”
  • Then select the delimiter that applies

In the burger shop example, the delimiter that applies is a comma, so I’d make sure that only the “Comma” checkbox is selected. At this point with a simple Text to Columns operation, you can click “Finish” and you will find your data split. You may have to update the column titles.

 

 

Remove Duplicates

Example:

In this burger shop spreadsheet, it may be the case that the same burger shop is listed multiple times. If you’re planning to analyze this data in a pivot table in the form of counts or averages, then you definitely don’t want any duplicate values in the dataset.

In this example, each burger shop has a unique name so any two rows with the same shop name indicate a duplicate that should be removed. If you’re using a spreadsheet where there are multiple items with the same title in a certain cell, though they are different based on their street address or city or otherwise, then you can use a simple Concatenate formula (see above) to create a unique “name” for each item in your table, then remove duplicates based on that.

How To Set It Up:

  • First, you’ll highlight all of the columns in your table by clicking the first column (column A) and dragging your mouse over to the last relevant one.

  • Next, you’ll click “Data” from the toolbar then “Remove Duplicates.” A window will appear and you’ll uncheck every column except for the one with the values that should be unique. In this example, it’s column A because it has the burger shop names.

  • Lastly, click “OK” and Excel will notify you of how many duplicates, if any, were removed. That means that Excel deleted all data in the row where a duplicate was found.

 

 

Pivot Tables

Example:

Let’s say you want to see how annual sales compare across states. Pivot tables allow you to take a dataset and summarize it in a variety of ways. It’s one of the most useful functions of Excel or Sheets.

How To Set It Up:

  • Navigate to your table of data and click anywhere within it
    • There’s no need to manually highlight all of your relevant cells unless you aim to exclude certain rows or columns from your pivot table – the pivot table function will automatically pull in all data within a complete table that does have any breaks
  • Under the “Insert” section in Excel or “Data” section in Sheets, click “PivotTable”
  • In Excel, a window will appear, and you’ll click “OK.” You’ll now be able to set up your pivot table to summarize your data how you’d like

  • To get the average annual sales by state example, drag “State” from the Field Name list to the section titled “Rows”
  • Drag “Annual Sales” to the section titled  “Values”
  • For this example, we want to see the average of these values, not the sum. To change that, click the “i” icon beside “SUM of Annual Sales” in the “Values” sections, then select “Average” from the list that appears

  • You’ll then have the average annual sales by state

 

Other Use Cases:

There are endless ways to use pivot tables – it’ll just depend on the dataset you’re analyzing. In a spreadsheet of houses for sale, you could find the count of houses for sale by city or state. In a table of revenue by month for the past four years, you could find the average amount of revenue by month or quarter of the year. You can also set up more complex pivot tables that include calculated fields.

 

Closing Thoughts

Admittedly, the first time you use one of these functions, it might be a frustrating experience of trying to make it work. I’d urge you to stick with it if this happens. A solid grasp of these essential functions is valuable in any industry that requires that you use data — which is nearly all of them. The more you practice, the easier and quicker you’ll get at using spreadsheets, and the more time you can save yourself when putting together analyses in the future.

5 Functions of Excel/Sheets That Every Professional Should Know is an original blog post first published on Go Fish Digital.

]]>
https://gofishdigital.com/blog/5-excel-functions-you-should-know/feed/ 0
4 Ways to Think Outside the Box When Promoting Your Digital PR Content https://gofishdigital.com/blog/content-promotion/ https://gofishdigital.com/blog/content-promotion/#respond Mon, 08 Jan 2018 14:35:08 +0000 https://gofishdigital.com/content-promotion/ So, you’ve got a great piece of content for your site — now what? Effectively promoting what you’ve produced can be just as important as generating the quality piece of content, itself. Think of it this way. If a journalist is puzzled by your pitch email (or worse, your email subject line), the likelihood of your […]

4 Ways to Think Outside the Box When Promoting Your Digital PR Content is an original blog post first published on Go Fish Digital.

]]>
So, you’ve got a great piece of content for your site — now what?

Effectively promoting what you’ve produced can be just as important as generating the quality piece of content, itself. Think of it this way. If a journalist is puzzled by your pitch email (or worse, your email subject line), the likelihood of your incredible content piece landing on their site is very small. Whether you have a data campaign, a map graphic, or something wholly unique, it will fall flat if promoted inadequately.

Related Content:

Don’t just send as many pitch emails as possible — instead, be intentional and efficient in your approach. Below you’ll find four ways to reimagine your promotion strategy and get the high domain authority backlinks you want.

Conceptualize a profile of the type of writer who would pick up your piece.

This might sound simple, but the point has more depth than you might expect. It goes without saying that when seeking out potential journalists, you’ll look for those who have previously covered the topic of your content piece. For example, if you’re promoting a map of popular beer styles, you’ll target journalists who have written about beer in the past. With the increasingly nebulous category of “lifestyle writers” who lack specific news beats, however, this tried and true strategy leaves out a significant sample of journalists to pitch. This is where the concept of a writer’s “profile” comes in.

In this strategy, the goal is to imagine what type of writer would pick up your piece, even if they haven’t covered the specific topic already. Continuing with the previous example, you could search for journalists who have written stories about Moscow mules, hangovers, guacamole, and more. The thought process, in this case, is: those who write about trendy topics would likely also be interested in something on beer. The other way to look at this is if a reader were interested in this content piece, what else would they be interested in? With that set of topics in mind, you can continue to target journalists beyond those who have written about your specific content topic.

Below is an example of placement on a high domain authority site (84) using this strategy.

Example of an effective writer profile pitch to Uproxx

Forget topics: seek out journalists who pick up content in the format that you have.

This is especially important for pieces like state-by-state maps, or city/state rankings. Again, with so many writers lacking specific news beats, there are many who seem to cover virtually any topic as long as it’s relevant to their readership in some way. That means that many journalists cover the same type of content formats, such as state-by-state maps, even if the topic of it is something completely new to their portfolio. Luckily, this gives content creators the opportunity to seek out writers based on format rather than topic.

For this strategy, you’ll simply search for writers using queries like “in every state,” “the top state for,” “the top city for,” etc., based off of what type of piece you’re promoting. Of course, this approach can be used for various content formats — just use search terms that make sense for your piece. This method gives you an even broader pool of journalists to target, both based on topic and on content format.

Below is an example of placement with a writer who commonly covers map graphics.

An example of a beat-writer picking up a content campaign

Use Reddit to drive traffic.

In your metaphorical bowl of chowder, backlinks may be the clams, but traffic is your potatoes. Of course, you want both for your site. When promoting your content piece, using social platforms to drive users to your website and to spread brand awareness is valuable.

Specifically, Reddit allows you to target potential site visitors based on their interests. By seeking out subreddits relevant to your topic, accept link submissions, and have a significant subscriber base, you can bring in a targeted group of visitors to your site. What’s more? Google Analytics provides information on users’ referral path down to the subreddit, allowing you to see which of your posts got the most traction.  

Google Analytics shows referral traffic from Reddit content promotion

Most important of all, create content that is pitchable.

Great content promoted well will be successful; mediocre content promoted well will be mediocre. At the end of the day, the success of your promotion efforts only goes as far as the quality of what you’ve created. Most importantly, there’s a difference between what’s interesting and what’s pitchable. The simplest way to discover whether a potential content piece could be an effective SEO campaign is to ask yourself: does this provide a news story?

Consider two campaign ideas. One: a map of the most delayed airports around the holidays. Two: a set of caricature illustrations of every NFL quarterback. The former provides a relevant and interesting take on holiday travel easily translated into a news story. The latter idea could be fun but isn’t likely to provide a journalist with a story. Keeping this in mind can help you avoid creating something cool but ultimately disappointing.

It can be difficult enough to stay creative when trying to produce unique content regularly. Don’t let a lackluster promotion strategy prevent you from getting the payoff your hard work deserves. Think outside the box and earn those backlinks!

4 Ways to Think Outside the Box When Promoting Your Digital PR Content is an original blog post first published on Go Fish Digital.

]]>
https://gofishdigital.com/blog/content-promotion/feed/ 0