Jan 14, 2001 #1 dondo Technical User Jan 9, 2001 2 US I have been unable to copy or move ActiveCells containing only " ' " or " '123ABC" Data. Help Please.
I have been unable to copy or move ActiveCells containing only " ' " or " '123ABC" Data. Help Please.
Jan 15, 2001 #2 cLocKwOrkPRO Programmer Jan 15, 2001 8 US Uh, how are you attempting to move it? I'd just set the cell's data to a varaible and then move it. i.e. Dim tempVariable As String tempVariable = SheetCodeName.Range(A6).value SheetCodeName.Range(A7).value = tempVariable No matter what is in the cell, it will be moved. Upvote 0 Downvote
Uh, how are you attempting to move it? I'd just set the cell's data to a varaible and then move it. i.e. Dim tempVariable As String tempVariable = SheetCodeName.Range(A6).value SheetCodeName.Range(A7).value = tempVariable No matter what is in the cell, it will be moved.