How can I classify a set of keywords by location?
-
I have a large corpus of keywords and would like to extract the location from them for classification purposes. The list of locations is also available. Is there an easy way to systematically extract locations from these keywords?
-
Answer:
if you have the list of locations you are searching for, then following Excel VBA code can help. Option Explicit Sub Findincell() Dim c As Range, i As Long Dim s As Variant Dim x s = Application.InputBox(Prompt:= _ "Please Select a Range For Search Terms", _ Title:="InputBox Method", Type:=8) For Each c In Application.InputBox(Prompt:= _ "Please Select a Range to Find In", _ Title:="InputBox Method", Type:=8) 'For i = LBound(s) To UBound(s) For Each x In s If InStr(UCase(c), UCase(x)) > 0 Then c.Offset(, 1) = UCase(x) Exit For End If Next x If c.Offset(, 1) = "" Then c.Offset(, 1) = "OTHER" Next c End Sub refer following page for step by step guide to run this VBA Code in Excel. http://faddies.info/blog/how-to-use-macros/
Fahad Bin Zafar at Quora Visit the source
Related Q & A:
- How can I burn a .rmvb file onto a DVD for viewing on a regular DVD player?Best solution by Yahoo! Answers
- How can I cancel a Yahoo Alert that I set up earlier?Best solution by Yahoo! Answers
- How can I stop a player in chess from freezing my game when I am winning in the middle or at the end of a game?Best solution by chess.com
- How do I open a program in its original location?Best solution by Yahoo! Answers
- How can I get a job at a resort for a Summer?Best solution by eHow old
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.