Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a workbook that has several spreadsheets. Sheet 1 is the sheet that I
use to total the information from the other sheets. These other sheets have information download daily into them which comes from a special web page that was created for our company. So these web downloads have some information that I am not needing, but the particular word can be in any particular row, but will always be in column A. I use this word as my control point to see where to go to get the information that I need, and this starting point changes daily. So what I am needing is a formula that will locate this word, it will always be in column A, and then drop down one line and over two columns to get the information that is needed. As an example lets say that Im looking for the word €śName€ť in column A; in column C is showing today €śApple€ť, and then in column D showing a percent of 20%. This last bit of information is what I need to gather by way of a formula. I have cut and pasted this information from several sheets into sheet 1 each day, and Im getting tired of doing that so was wondering, if there was a formula that could take care of this. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have never used several of those formula commands that you are referring
to. I tried this morning using the Find function option found under "Edit", but I couldn't get it to go to the right sheet to look up the word that I wanted. "Don Guillett" wrote: You could use a FIND macro and then OFFSET or formulas MATCH to find the row and then INDEX to find the cell from there. -- Don Guillett Microsoft MVP Excel SalesAid Software "Walter" wrote in message ... I have a workbook that has several spreadsheets. Sheet 1 is the sheet that I use to total the information from the other sheets. These other sheets have information download daily into them which comes from a special web page that was created for our company. So these web downloads have some information that I am not needing, but the particular word can be in any particular row, but will always be in column A. I use this word as my control point to see where to go to get the information that I need, and this starting point changes daily. So what I am needing is a formula that will locate this word, it will always be in column A, and then drop down one line and over two columns to get the information that is needed. As an example lets say that Im looking for the word €śName€ť in column A; in column C is showing today €śApple€ť, and then in column D showing a percent of 20%. This last bit of information is what I need to gather by way of a formula. I have cut and pasted this information from several sheets into sheet 1 each day, and Im getting tired of doing that so was wondering, if there was a formula that could take care of this. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here is a formula using my suggestion.
=INDEX(C:C,MATCH("Thu",A:A,0)+1) If you want a macro solution, record a macro to select your sheet and then use the edit find function. Then clean it up like this. Change the sheet and mywhat to suit Sub findvalueandoffset() mywhat = "Thu" With Sheets("Sheet13").Columns("A") Set mv = .Find(What:=mywhat, After:=.Cells(1, 1), _ LookIn:=xlValues, LookAt:=xlWhole, SearchOrder:=xlByRows, _ SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False) If Not mv Is Nothing Then MsgBox mv.Offset(1, 2) End With End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Walter" wrote in message ... I have never used several of those formula commands that you are referring to. I tried this morning using the Find function option found under "Edit", but I couldn't get it to go to the right sheet to look up the word that I wanted. "Don Guillett" wrote: You could use a FIND macro and then OFFSET or formulas MATCH to find the row and then INDEX to find the cell from there. -- Don Guillett Microsoft MVP Excel SalesAid Software "Walter" wrote in message ... I have a workbook that has several spreadsheets. Sheet 1 is the sheet that I use to total the information from the other sheets. These other sheets have information download daily into them which comes from a special web page that was created for our company. So these web downloads have some information that I am not needing, but the particular word can be in any particular row, but will always be in column A. I use this word as my control point to see where to go to get the information that I need, and this starting point changes daily. So what I am needing is a formula that will locate this word, it will always be in column A, and then drop down one line and over two columns to get the information that is needed. As an example lets say that Im looking for the word €śName€ť in column A; in column C is showing today €śApple€ť, and then in column D showing a percent of 20%. This last bit of information is what I need to gather by way of a formula. I have cut and pasted this information from several sheets into sheet 1 each day, and Im getting tired of doing that so was wondering, if there was a formula that could take care of this. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks for your help trying it right now
"Walter" wrote: I have a workbook that has several spreadsheets. Sheet 1 is the sheet that I use to total the information from the other sheets. These other sheets have information download daily into them which comes from a special web page that was created for our company. So these web downloads have some information that I am not needing, but the particular word can be in any particular row, but will always be in column A. I use this word as my control point to see where to go to get the information that I need, and this starting point changes daily. So what I am needing is a formula that will locate this word, it will always be in column A, and then drop down one line and over two columns to get the information that is needed. As an example lets say that Im looking for the word €śName€ť in column A; in column C is showing today €śApple€ť, and then in column D showing a percent of 20%. This last bit of information is what I need to gather by way of a formula. I have cut and pasted this information from several sheets into sheet 1 each day, and Im getting tired of doing that so was wondering, if there was a formula that could take care of this. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
finding n-th most frequently occuring word | Excel Worksheet Functions | |||
Finding a word in CSV files | Excel Discussion (Misc queries) | |||
Finding Number of cells in a column of other sheet having a specific word in them | New Users to Excel | |||
Finding All but Last Word | Excel Worksheet Functions | |||
Finding specific word in column | Excel Worksheet Functions |