Multi Keyword Phrase Finding Macro

Jun 8, 2007

I have a large keyword list in a sheet called "AllKWs" In ColA from A3 downwards).

What I'd like to be able to do is this, which I'm sure will be complicated, but I will explain.

Say keyword phrase sheet has 25,000 rows of data (could be more/could be less).
I click an assigned macro button.
A pop up box appears.
I type in a word or words I'd like some info on, so for example I type in a word or words like "car rent"

It then returns for me on a new sheet called "Multi Keywords" a lot of data on this sheet, which would hopefully be as follows:

All Row 1 will contain Column headings
All row 2 will contain Total Counts (I'll explain in a minute this row)

So, all data to be returned from Row 3 downwards.
OK, as to the data to be returned.
All returned data In all Columns to show data in descending order by No of occurrances/appearances

Col A (From A 3 downwards) = The actual number of 2 word appearances (In this example that contain the words "car rent"

In Col B = All 2 word Phrases Containing ("In this example "Car Rent")
(As a note, In this example, ColA (CellA3) could only show the number"1" and ColB (B3)could only show the phrase "Car Rent") once. (As there isn't no other possible combination).

In Col C =The actual number of 3 word appearances listed in descending order That
contain the word "Car rent"

In Col D =All 3 word Phrases Containing "Car Rent"

In Col E =The actual number of 4 word appearances containing "Car Rent" listed in descending order

In Col F =All 4 word Phrases Containing "Car Rent"

In Col G =The actual number of 5 word appearances listed in descending order

Actually if anyone can crack this I really do take my hat of to them.
OK,A few more points,

Cells B2,D2,F2,H2,J2,L2,N2,P2,R2, All contain the word "Total:" and if the macro can fill in the number as appropriate.

So for example Cell L2 (For 7 word phrases) would say something like "Total:42" (If in Col L From L3 downwards the macro found 42 7 word phrases that contained the words "Car rent"

Ok, Cells A2,C2,E2,G2,I2,K2,M2,O2,Q2 All these cells will contain the word "Total". So these cells would list the combined total number of occurrances of all the phrases.
So for example cell K2 might say "Occur:324" as the total number of occurances of 7 word phrases that had the words "Car rent"in.

OK. as an example, I will post a code that Jindon wrote for me sometime ago. I'm posting this now, as it is very similar in what I would like this macro to be able to do, and might help as I'm sure this 1 will be complicated. This 1 looks for a phrase, returns by No of occurrances etc, but for all the combinations (Word lengths) within the Keyword phrase list, rather than what I'm asking for now, which splits them into Number of words columns.

Here it is anyway:


Sub NicheKeywordFinder()
Dim a, dic As Object, X, myTxt As String, b(), c(), n As Long, i As Long, e, s, myTotal As Long
myTxt = InputBox("HuaHinCarRental - Niche Keyword Finder") 'change to suit
If Len(myTxt) = 0 Then Exit Sub
Set dic = CreateObject("Scripting.Dictionary")
dic.CompareMode = vbTextCompare
ReDim b(1 To Rows.Count, 1 To 1): ReDim c(1 To Rows.Count, 1 To 3)
With Sheets("All KWs") 'change to suit
a = .Range("a1", .Range("a" & Rows.Count).End(xlUp)).Value
End With

View 9 Replies


ADVERTISEMENT

Search For Keyword Or Phrase In Website Using Excel?

Apr 11, 2012

I would like to search for a keyword or a phrase in a website using excel.

Generally we copy the keyword or a phrase and paste it in google and go for search. but i wanted to do this using excel as i have to search same pharse in multiple websites.

View 1 Replies View Related

Find Keyword In String And Replace That Cell With Keyword Found

Mar 9, 2014

I'm looking to identify a keyword in a string and then replace that string with just the keyword.

The string is a product description. The keyword is a product group. The keyword can showup in any position in the string.

I can't post the actual data do to confidentiality requirements. but here's an example.

description
qty
price

keywords
code

green grapes bunch
1
2.5

[Code] .......

View 2 Replies View Related

Macro That Deletes Row Before And After Certain Phrase

Nov 3, 2008

I need a macro that searches my spreadsheet for a keyword in Column B. If it finds the keywords (or an array of keywords would be even better), it then deletes the entire row above the keyword, the row with the keyword, and the row below the keyword.

So for example,

(Column B)
1 - Row Above
2 - Keyword Row
3 - Row Below

If the macro finds the text in column 2, it would delete 1, 2 and 3.

I need to have a second macro that performs a very similar function.
it copies the 3 rows (similar to the example below) to a different sheet based on the keyword.

View 3 Replies View Related

Phrase Search Macro

Jan 26, 2014

I would like to write a macro which checks if phrase from column B (lets say 13845) can be found in column A cells.

For example DDH113845G389.

I think that it should be some kind of loop but I'm afraid I can't handle it.

View 6 Replies View Related

Deleting Cells With Keyword Macro?

Jul 23, 2014

So I have data that I'm importing in rows 1,2 and 3. The first row has the product type, then rows 2 and 3 have additional info pertaining to that product. I was wondering how I would write a macro that could identify entries in the first row that equal a particular product, and remove those cells, along with its respective info in rows 2 and 3. Ideally, I could just push a button, and a particular product along with all it's info would disappear from my imported table.

View 4 Replies View Related

Macro When Copied It To Use In Another One Gives Invalid Use Of Me Keyword

May 25, 2007

I have a macro that works fine in one workbook. I copied it to use in another one, but then I get this error message: "Invalid Use of Me Keyword".

Dim wSheet As Worksheet, strMsg As String
For Each wSheet In Worksheets
If wSheet.ProtectContents = True Then
strMsg = "All sheets protected."
Else
strMsg = "All sheets unprotected."
End If
Next wSheet
MsgBox strMsg
Unload Me
End Sub

View 7 Replies View Related

Macro To Scroll To A Row When A Keyword In The Row Is Typed In A Cell

May 10, 2014

I have a list of drugs which possibly could increase to thousands in rows. I will need a macro that can scroll down to a particular row when the text in that row has been entered.

Assuming I have LOTEMP in A5000 , I would want a macro to scroll to row 5000 when the word , " LOTEMP" is typed in cell , say B2.

View 2 Replies View Related

Find Row With Keyword And Then Use Row Number Macro To Hide Columns

Nov 4, 2013

I have a workbook with several sheets that have basically the same template but some have many more rows that others..

I am using the following code to hide columns based on cell value to "tidy it up" for printing.

Code:
Dim i As Long
For i = 170 To 2 Step -1
Cells(39, i).EntireColumn.Hidden = Cells(39, i).Value = "N"
Next i

I would like the VBA to determine what the row number is based on the row header e.g. "Prioritised Courses", rather than having to maintain the code each time new rows are added.

I would put it at the top or way down the bottom, but multiple (even less excel skilled) users will be using the "hide columns" functionality.

View 6 Replies View Related

Macro For Returning URL Of First Search Result On Google From Keyword List In Excel

Apr 3, 2013

So basically I have an Excel sheet which has keywords that need to be entered in Google search. I need the URL of the first page of the search result that appears after that keyword is entered. IS there a macro for the same?

View 3 Replies View Related

Return Row Index Of Selected Items In Multi Column Multi Select Listbox

Jun 30, 2014

I have a listbox with 8 columns. Multiselect is enabled, and it must stay this way. As part of my program, after the user presses a command button, I need to use the row indexes of the selected rows in order to copy the selected information into an array which is then placed in a different listbox, and then delete the items from the original list. Pseudocode of what I want to do:

[Code] .....

But my understanding is that .ListIndex does not work this way with multiselect listboxes. I've tried searching for a solution for a while, but I cannot find one.

View 5 Replies View Related

1 Column Into Multi-columns And Multi-rows

Jul 16, 2013

Let's say I have one column of;

1
2
3
4
5
6
7
8
9

What is the most efficient way to change this into '3-columns & multi-rows' like this?:

1 2 3
4 5 6
7 8 9

The actual list is a lot longer and numbers are not in order.

View 7 Replies View Related

Concatenate Multi-row Cells Into One Multi-row Cell

Aug 21, 2013

I have multiple rows within a cell separated by Alt+Enter, and would like to combine them as follows:

Desired Result

First
First
Name
Name
First Name
First Name

View 2 Replies View Related

Multi Sheet Macro

Nov 29, 2008

Actually i am going to be mad soon if i cant fnd a solution. I need help on a subject.

i have many sheets, more than 200 in a workbook. Each sheet is eaxctly same format and just the numbers are different.

lets say

sheet 1
A1- Manchester
A2- London
A3- Leeds

sheet 2
A1 - Istanbul
A2 - Ankara
A3 - Izmir

I want in sheet3 with a macro, when i put the sheet number in a cell, next cell will show A123.
I mean;
sheet 3
when i put A1 as "sheet 1" i want the text in A2 written "Machester; london; leeds"

or if A1 is "sheet 2" than A2 should write "Istanbul; Ankara; Izmir"

View 9 Replies View Related

(Countif Multi) Macro

Sep 15, 2009

I am trying to have excel Look in column A for either a date, or a date range. if the date = the correct date, or falls in the date range then I need excel to look in column C for a specific word. If the date matches, AND it finds the word in column C, I need it to count them. I preferably like a date range, but if I need to do each individual date, that is fine too.

Example:

8/1/2009
Video
Account Research 8/1/2009
Video
Complete Work Order 8/1/2009
Video
Account Research 8/1/2009

Video
Account Research 8/1/2009
Video
Complete Work Order
I need it to recognize 8/1/2009, and once it sees it, then check to see if there are any "account research" in column C, and then count all of them.

One more issue - Column is not just a date - it has a time stamp: 8/1/2009 11:15:36 AM. so I has to be able to just look for the date, not the time.

View 9 Replies View Related

Macro To Remove Rows That Contains The Phrase "Off Peak" And "Weekend"

Feb 27, 2009

I have a spreadsheet with about 20,000 lines. (The number of rows fluctuate) I need a macro to remove (delete) rows that contains the phrase "Off Peak" and "Weekend"

I was setting it up in a loop but I don't know how to make the loop end after ALL the "Off Peak" and "Weekend" info is removed.

My macro just does a find then delete the row and then loop to the find again. Is there an easier way and can the "Off Peak" and "Weekend" statements be combined into one search

Do While
Cells.Find(What:=" Off Peak", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
ActiveCell.Select
Selection.EntireRow.Delete
Loop

View 9 Replies View Related

Macro Combining Multi Sheets Into One

Nov 26, 2006

I have a macro that someone else wrote. it is suppose to combine multiple sheets into one. the problem is that when it combines the information it is adding rows between the info. I would like it to just put the info on the next available row and begin there. here is the macro.....

View 9 Replies View Related

Get The Last Word In Phrase

Nov 4, 2006

I'm doing a macro to get the last word in a phrase

View 7 Replies View Related

Seperating Parts Of A Phrase Using Vba

Aug 3, 2009

I have a phrase in a listbox formated as such: "Company Name / Company ID # / City, State"

I need to be able to seperate the values out into seperate categories:
Company Name
Company ID #
City
State

Is there any way to do this within the code?

View 5 Replies View Related

Find Phrase And Look Up Corresponding Cell Value

Mar 24, 2009

I have three columns.
Column 1: A list of items with a very long text description in each cell
Column 2: The Key phrase found within the long description in the cells of Column 1.
(The key phrase is different for each cell).
Column 3: Custom shortened description in text format.
Column 4: Formula to return the Custom shortened description, equivalent to the item in Column 1

How do I create a formula in Column 4 so that Excel searches for the Key phrase found within the string of Column 1 and returns the custom description in Column 4?

View 9 Replies View Related

Extract Characters From Phrase

Nov 15, 2006

i have a list of information, and from that i want to extract a certain piece from that information and out it in a new cell...
eg. 'KLM00506', 'KLM00409-10', 'KLM00821-9' etc

as you can see, the info is not in the same length
what i need is to take out the FIRST 6 characters and have the remaining to be in a new cell

anyone has an excel formula that i can use ? not really interested in code, cause in this particular worksheet, everything is at its' place, no code required

View 4 Replies View Related

Count Certain Phrase When There Is Multiple Answers

Jun 4, 2014

In the attachment, on the totals sheet I am doing a count of the results on Sheet2. Under "Alcohol as it Applies to Me" on Totals I am trying to count the 5 different categories, but the original question is a pick all that apply so at times there are multiple answers. I can't figure out the formula to count each phrase when there is multiple answers.

HRA Results.xlsx‎

View 2 Replies View Related

Identifying Phrase In A Text List

May 14, 2014

I have a cell with a long list of phrases all separated by commas.

So it would appear, chicken, beef, steak, soup, fish

I want to create a rule in a cell to identify if one of those phrases comes up - so if chicken comes up then a 1 would appear.

To make it interesting is it possible to grab two words from the cell, so grab the words chicken and beef from a mass of words in one cell and bring it across.

I have these cells which contain huge amount of text and preferences and I am looking to identify these entities on if they contain these words.

View 2 Replies View Related

Rank Instances Of Phrase In A Column

Mar 21, 2014

Let's say this is my data. It's already been sorted so that like entries are all grouped together.

Ex1
Ex1
Ex1
Ex2
Ex2

I need to make a macro that numbers my data like below.

1
Ex1

2
Ex1

3
Ex1

1
Ex2

2
Ex2

Essentially, my data is many columns and sorted on a bunch of different levels. I need a quick way to assign a rank to every row in the same group, to see at a glance which performed the best.

View 3 Replies View Related

VBA Code For Find And Replace A Particular Phrase

Apr 23, 2008

I am trying to write a code for VBA code for find and replace, I want to find a particular phrase (i.e. 1. Value Added Processing) which is all in one cell and replace it a range of cells of other cells which is contained on a different sheet.

So basically the original 1 cell would be replaced for anywhere between 1 to 20cells. Depending upon what I type in.

Worksheets(1).Range("B2:B50").Replace What:="1.ValueAddedProcessing", Replacement:= _
"Sheet1!A1:A11", LookAt:=xlPart, SearchOrder:=xlByRows, _
MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False

View 9 Replies View Related

Search For Only One Word / Phrase In Range Of Cells

Jul 23, 2014

I try to search for only one word/phrase in range of cells. I would like formula to return the cell value that contains work/phrase I asked to look for.

For example: A1 contains "Apple", C1:3 contain "Cherry juice", "Apple pie", "Orange bonbon". I want D1 to check which cell from range C1:3 contains word/phrase from A1 and show it to me - "Apple pie".

View 3 Replies View Related

Text Configuration - Tell A Cell To Pick Up A Phrase?

Aug 15, 2013

Text configuration - how can I tell a cell to pick up a phrase from one cell, but if that phrase is equal to one particular phrase, then produce a blank.

View 3 Replies View Related

How To Count Number Of Times A Phrase Is Repeated In A Row

Jun 24, 2012

How I can count the number of times each unique phrase in row "A" is repeated?

For example if my data set was

Blue
Green
Black
Green
Red
Red
Red
Red Hat

how can I get excel to count the number of times and return data like

Blue 1
Green 2
Black 1
Green 2
Red 3
Red 3
Red 3
Red Hat 1

View 3 Replies View Related

Insert Line Feed At Intervals In A Phrase

Aug 24, 2007

Each cell in Range("A1:A2000") contains a remark, each phrase or remark is
Between 5 & 70 characters all written without line feeds (carriage return,i mean Alt Enter) Just spaces between words. What I would like to do in every cell is to force a line feed (Alt Enter) every 10 characters, and if the 10th character happens to be in the middle of a word I want the line feed to be inserted at the end of this word. Note that the phrases are not necessarily multiples of 10.

View 2 Replies View Related

Find Phrase In One Column And Apply Formula To Different Columns Same Row?

Aug 27, 2013

I am trying to come up with a macro that will find rows that contain the words �as % of Revenue� and then calculate and apply the appropriate formula to the actual and budget columns. I have attached a sample of what the source data look like.

The formula divides the category�s total expense by the revenue in row 4. For a complete macro, I would want to also subtract the budget result from the actual result and put its result in the �better (worse)� column. I need to use this on 12 or so different workbooks which is why I�m wanting a macro.

Here is my attempt to accomplish this task; however, I quickly realized it is woefully inadequate because I neither understand how to apply it to the different columns or how to find the next instance of �as % of revenue�).

VB:
Sub Macro1()
'
' Macro1 Macro
'
Range("B10").Select
Cells.Find(What:="as % of Revenue").Activate
Range("B20").Select
ActiveCell.FormulaR1C1 = "=R[-1]C/R10C"
Range("B21").Select
End Sub

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved