Move text from cell to another
Closed
jojo
-
May 11, 2010 at 04:09 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 11, 2010 at 04:20 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - May 11, 2010 at 04:20 PM
Related:
- Move text from cell to another
- Excel send value to another cell - Guide
- Insert a function in cell b2 to display the current date from your system. ✓ - Excel Forum
- Clear only the formatting from the selected cell (leaving the content) - Guide
- If cell contains (multiple text criteria) then return (corresponding text criteria) ✓ - Excel Forum
- If cell contains date then return value ✓ - Office Software Forum
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
May 11, 2010 at 04:20 PM
May 11, 2010 at 04:20 PM
You have to write a macro for that. If you want this to happen on its own then you most probably have to define this event on the sheet where this will occur
Private Sub Worksheet_Change(ByVal Target As Range)
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
End Sub