Guzzlr
Well-known Member
- Joined
- Apr 20, 2009
- Messages
- 982
- Office Version
- 2021
- Platform
- Windows
Hello All...
I have another issue.
What if the word "Bureau" is not in the Range to Find? How can I have excell automatically insert the word "Bureau", then continue with the Cut/Insert?
Thanks for the help
excel 2013
I have another issue.
Code:
Set Fnd = Range("4:4").Find("Bureau", , , xlWhole, , , False, , False)
If Not Fnd Is Nothing Then
Intersect(Range("4:5000"), Fnd.EntireColumn).Cut
Range("M4").Insert shift:=xlToRight
End If
What if the word "Bureau" is not in the Range to Find? How can I have excell automatically insert the word "Bureau", then continue with the Cut/Insert?
Thanks for the help
excel 2013