mark cell as completed...?

andrew9993

New Member
Joined
Apr 28, 2011
Messages
4
Hey, does anyone know,
, what I want to do is mark the cell as completed ontop of what I already have in my macro
maybe strikethrough the font...or something similar just so I know I've completed it
(I want to add it into my current macro so I only have to click the one button)...:nya:thanks

this is what i have in my macro so far:

Sub MoveToSameCellOnSheet2()

Sheets(2).Range(ActiveCell.Address).Value = ActiveCell.Value

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.
Try

Code:
Sub MoveToSameCellOnSheet2()
With Sheets(2).Range(ActiveCell.Address)
    .Value = ActiveCell.Value
    .Font.Strikethrough = True
End With
End Sub
 
Upvote 0
Like this?

<font face=Courier New><br><SPAN style="color:#00007F">Sub</SPAN> MoveToSameCellOnSheet2()<br>    <SPAN style="color:#00007F">With</SPAN> Sheets(2).Range(ActiveCell.Address)<br>        .Value = ActiveCell.Value<br>        .Font.Strikethrough = <SPAN style="color:#00007F">True</SPAN><br>    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN><br></FONT>
 
Upvote 0
...............or you could use background colour:
Code:
Sub MoveToSameCellOnSheet2()
    With Sheets(2).Range(ActiveCell.Address)
        .Value = ActiveCell.Value
        .Interior.Color = vbGreen
    End With
End Sub
 
Upvote 0
those macros change the moved cell, is there anyway to change the original cell

(sheet#1) ....

i select a cell:warning: on sheet#1 (this is the cell I need to strikeout / mark as completed)
and click my macro, which basically copies my values into sheet#2)

appreciate your help :)
 
Upvote 0
Try

Code:
Sub MoveToSameCellOnSheet2()
Sheets(2).Range(ActiveCell.Address).Value = ActiveCell.Value
ActiveCell.Font.Strikethrough = True
End Sub
 
Upvote 0
Code:
Sub MoveToSameCellOnSheet2()
    With Sheets(2).Range(ActiveCell.Address)
        .Value = ActiveCell.Value
    End With
Activecell.Interior.Color = vbGreen
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,502
Messages
6,179,126
Members
452,890
Latest member
Nikhil Ramesh

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