Nerdalert314
New Member
- Joined
- Mar 28, 2018
- Messages
- 23
Good afternoon,
Sorry if this is repeated by I'm not even sure how to work this.
I have a call that has the value "Total Cash". I am using this to find the cell. I can also use find and replace.
I then want to remove "TOTAL CASH" and put it in the cell 2 above it. My attempt at this did not work.
Any suggestions?
Sorry if this is repeated by I'm not even sure how to work this.
I have a call that has the value "Total Cash". I am using this to find the cell. I can also use find and replace.
HTML:
Cells.Find(What:="TOTAL CASH", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
I then want to remove "TOTAL CASH" and put it in the cell 2 above it. My attempt at this did not work.
HTML:
ActiveCell.Offset(-2, 0).Range("A1").ActiveCell.FormulaR1C1 = "TOTAL CASH"
Any suggestions?