Excel for SEO and Analytics by SeoTakeaways

Preview:

DESCRIPTION

Powerful excel cheat sheet for working in SEO and Analytics.

Citation preview

Excel for SEO & Analyticsby SEOTakeaways.com

Index

1. Editing in Excel2. Text Manipulation in Excel3. Data Validation in Excel4. Working with Formulas in Excel5. Selection in Excel6. Navigation in Excel7. Charts and Tables in Excel8. Macros and VB Editor in Excel9. Lookup and Reference in Excel10. Excel Plugins for SEO

Editing in Excel

Text Manipulation in Excel

Data Validation in Excel

Working with Formulas in Excel

Selection in Excel

Navigation in Excel

Charts and Tables in Excel

Macros and VB Editor in Excel

Extract link from a hypertext or a long list of hypertext

1.Open Visual Basic Editor (ALT + F11).2.Go to Insert Menu -> Module (to add a module)3. Paste the following codeSub ExtractLinks()Dim Link As HyperlinkFor Each Link In ActiveSheet.HyperlinksLink.Range.Offset(0, 1).Value = Link.AddressNextEnd Sub4. Close the Visual Basic Editor (use ALT + Q)5. Select the hypetexts and then run the macro ‘ExtractLinks’ (use ALT+F8)

Make a URL or list of URLs active

1.Open Visual Basic Editor (ALT + F11).2.Go to Insert Menu -> Module (to add a module)3. Paste the following codeSub Activatelink()Dim Link As RangeFor Each Link In SelectionLink.Hyperlinks.Add Anchor:=Link, Address:=Link.TextNext LinkEnd Sub4. Close the Visual Basic Editor (use ALT + Q)5. Select the links you want to activate and then run the macro ‘Activatelink’ (use ALT+F8)

Lookup and Reference in Excel

Excel Plugins for SEO