Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm new to Excel, so I have no idea if this can even be done....my church
secretary has a worksheet with three active cells, she wants to set the width of C2 at 50 characters and when she's typing in that cell, if the text goes over 50 characters, she wants to cursor to automatically jump to c3. (Just go one down) Is this possible? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
No. Excel doesn't monitor an entry until it is entered. In other words,
Excel won't know the entry is over 50 characters until the entry is made. What you can do is use a Worksheet_Change event macro that looks at the entry after it has been made and, if it is over 50 characters, remove all characters after 50 and place them in the cell below. Post back if this will work for you and you need help with it. HTH Otto "Pastor Hank" wrote in message ... I'm new to Excel, so I have no idea if this can even be done....my church secretary has a worksheet with three active cells, she wants to set the width of C2 at 50 characters and when she's typing in that cell, if the text goes over 50 characters, she wants to cursor to automatically jump to c3. (Just go one down) Is this possible? Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Yes that would work, and yes I will definetly need help, I can barely create
Word macros, and this is the 2nd or 3rd time, I've even tried to do anything with Excel... thank you "Otto Moehrbach" wrote: No. Excel doesn't monitor an entry until it is entered. In other words, Excel won't know the entry is over 50 characters until the entry is made. What you can do is use a Worksheet_Change event macro that looks at the entry after it has been made and, if it is over 50 characters, remove all characters after 50 and place them in the cell below. Post back if this will work for you and you need help with it. HTH Otto "Pastor Hank" wrote in message ... I'm new to Excel, so I have no idea if this can even be done....my church secretary has a worksheet with three active cells, she wants to set the width of C2 at 50 characters and when she's typing in that cell, if the text goes over 50 characters, she wants to cursor to automatically jump to c3. (Just go one down) Is this possible? Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I gather that you don't want the text to be broken in the middle of a word,
so you want to move the last word that takes the count over 50 to be moved as well as everything after it. Is that right? Otto "Pastor Hank" wrote in message ... Yes that would work, and yes I will definetly need help, I can barely create Word macros, and this is the 2nd or 3rd time, I've even tried to do anything with Excel... thank you "Otto Moehrbach" wrote: No. Excel doesn't monitor an entry until it is entered. In other words, Excel won't know the entry is over 50 characters until the entry is made. What you can do is use a Worksheet_Change event macro that looks at the entry after it has been made and, if it is over 50 characters, remove all characters after 50 and place them in the cell below. Post back if this will work for you and you need help with it. HTH Otto "Pastor Hank" wrote in message ... I'm new to Excel, so I have no idea if this can even be done....my church secretary has a worksheet with three active cells, she wants to set the width of C2 at 50 characters and when she's typing in that cell, if the text goes over 50 characters, she wants to cursor to automatically jump to c3. (Just go one down) Is this possible? Thanks |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Yes, and thank you for taking the time to help me with this.
Hank "Otto Moehrbach" wrote: I gather that you don't want the text to be broken in the middle of a word, so you want to move the last word that takes the count over 50 to be moved as well as everything after it. Is that right? Otto "Pastor Hank" wrote in message ... Yes that would work, and yes I will definetly need help, I can barely create Word macros, and this is the 2nd or 3rd time, I've even tried to do anything with Excel... thank you "Otto Moehrbach" wrote: No. Excel doesn't monitor an entry until it is entered. In other words, Excel won't know the entry is over 50 characters until the entry is made. What you can do is use a Worksheet_Change event macro that looks at the entry after it has been made and, if it is over 50 characters, remove all characters after 50 and place them in the cell below. Post back if this will work for you and you need help with it. HTH Otto "Pastor Hank" wrote in message ... I'm new to Excel, so I have no idea if this can even be done....my church secretary has a worksheet with three active cells, she wants to set the width of C2 at 50 characters and when she's typing in that cell, if the text goes over 50 characters, she wants to cursor to automatically jump to c3. (Just go one down) Is this possible? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2 Q's: moving cursor / forcing a response | Excel Discussion (Misc queries) | |||
Forcing the cursor to move to A of the next line after D of the pr | Excel Discussion (Misc queries) | |||
Forcing the cursor | Excel Programming | |||
forcing value into remote cell | Excel Discussion (Misc queries) | |||
Forcing data into a cell | Excel Worksheet Functions |