mulholm

New Member
Joined
Jul 2, 2018
Messages
49
I found the following code which looks as though it will do what i want.

Private Sub mulholm()
Dim myRange As Range
Dim myCell As Range
Set myRange = Range("B15:B16")
For Each myCell In myRange
If myCell Like "*Department Total*" Then

myCell.Font.Bold = True

End If
Next myCell
End Sub


This works and will turn the word bold however what i want to achieve is that when "Department Total" is present in myrange then it will action an index/match function from another worksheet.

I have tried to do it by adding in the index/match macro but if doesnt work.

Private Sub mulholm()
Dim myRange As Range
Dim myCell As Range
Set myRange = Range("B15:B16")
For Each myCell In myRange
If myCell Like "*Department Total*" Then

"=INDEX('" & s & "'!R[-15]:R[1048559],MATCH(""Department Total"",'" & s & "'!C[-1],0),3)"

End If
Next myCell
End Sub
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.

Forum statistics

Threads
1,215,839
Messages
6,127,204
Members
449,368
Latest member
JayHo

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