Macro To Lookup Value In Array And Return Value From Second Row

rameezl17

Board Regular
Joined
Mar 6, 2018
Messages
105
Hi Everyone,

I currently have this macro

Sub Find_Phase()
Dim found As Range
Set found = Sheets("1").Rows("17:18").Find(what:=Sheets("Report").Cells(2, 2).Value, LookIn:=xlValues, lookat:=xlWhole)
If found Is Nothing Then
Else
Sheets("Report").Cells(5, 3) = found.Row
End If
End Sub

So far it returns the row number to my "Report" Sheet, however I need the macro to return the value in row 18 that is underneath the row 17 value...

for an example, if the value is found in sheets("1") row 17 column G i need the value in my "Report" sheet to be from sheets("1") row 18 column G.

Im not sure if this macro is the right direction but i am stuck
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
How about
Code:
Sheets("Report").Cells(5, 3) = found.Offset(1).Value
 
Upvote 0
You can, that's what the site is for :)
 
Upvote 0
Can you please post you question to the thread, that way everyone see what you want.
Thanks.
 
Upvote 0
I now need the macro to loop through all the tabs except for "Report" and when it matches the projects name found in cell A5 Down (this list will depend on how many projects are assigned to the project owner) (Cell A2 in report)
to a tab then the macro needs to look through row 17 in all those tabs to match the date and then return the Project phase which is the (Found.Offset(1).Value)
 
Upvote 0
Ok, how about
Code:
Sub Find_Phase()
   Dim Cl As Range, Fnd As Range
   Dim Sht As String
   
   With Sheets("Report")
      For Each Cl In .Range("A5", .Range("A" & Rows.Count).End(xlUp))
         Set Fnd = Sheets(Mid(Cl.Value, InStr(1, Cl.Value, " ") + 1)).Rows(17).Find(.Range("B2").Value, , xlValues, xlWhole, , , , , False)
         If Not Fnd Is Nothing Then Cl.Offset(, 2).Value = Fnd.Offset(1)
      Next Cl
   End With
End Sub
 
Upvote 0
Is it directly related to this code?
If so yes, otherwise you need to start a new thread
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,729
Members
449,049
Latest member
MiguekHeka

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top