MarkCBB
Active Member
- Joined
- Apr 12, 2010
- Messages
- 497
Hi there VBA pros,
I would like to make some text i.e. "Welcome to the new system, please ensure you capture data correctly" to appear in a cell but flying from one side of the cell to the other side (right to left). text appearing from the cell boarder and disappearing at the left boarder. like messages on websites.
i tried using the following code:
but it is not working the way it should and its not the best way to do so.
I would like to make some text i.e. "Welcome to the new system, please ensure you capture data correctly" to appear in a cell but flying from one side of the cell to the other side (right to left). text appearing from the cell boarder and disappearing at the left boarder. like messages on websites.
i tried using the following code:
Code:
sub fly_text
sheet1.range("a1").InsertIndent 1
end sub
but it is not working the way it should and its not the best way to do so.