ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Cell Wrap (https://www.excelbanter.com/excel-worksheet-functions/147061-cell-wrap.html)

nabanco

Cell Wrap
 
Hello,

Is there a way to prevent tabbing past a certain point in a spreadsheet?

For example, if my sheet goes from column A to column N, can I block all
cursur movement beyond column N? I am trying to get it to automatically wrap
back to column A when column N is reached.

Thank you

Mike H

Cell Wrap
 
Try this:-

Right click the sheet tab , view code anf paste this in:-

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Column 14 Then
Cells(ActiveCell.Row + 1, 1).Select
End If
End Sub

Mike

"nabanco" wrote:

Hello,

Is there a way to prevent tabbing past a certain point in a spreadsheet?

For example, if my sheet goes from column A to column N, can I block all
cursur movement beyond column N? I am trying to get it to automatically wrap
back to column A when column N is reached.

Thank you


steve_doc

Cell Wrap
 
could also try unlocking the cells you want users to access ie Col A - col N

Select Col A - N - Format/Cells/Protection/uncheck Locked
then Password protect the sheet, and ensure you uncheck Select locked cells

HTH

"nabanco" wrote:

Hello,

Is there a way to prevent tabbing past a certain point in a spreadsheet?

For example, if my sheet goes from column A to column N, can I block all
cursur movement beyond column N? I am trying to get it to automatically wrap
back to column A when column N is reached.

Thank you


nabanco

Cell Wrap
 
Thanks Mike, it worked but I have no idea why.

If I were to use this same formula in another worksheet, what section of the
below formula would I change to tell excel to wrap at column K or Z?

"Mike H" wrote:

Try this:-

Right click the sheet tab , view code anf paste this in:-

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Column 14 Then
Cells(ActiveCell.Row + 1, 1).Select
End If
End Sub

Mike

"nabanco" wrote:

Hello,

Is there a way to prevent tabbing past a certain point in a spreadsheet?

For example, if my sheet goes from column A to column N, can I block all
cursur movement beyond column N? I am trying to get it to automatically wrap
back to column A when column N is reached.

Thank you


Pete_UK

Cell Wrap
 
N is the 14th letter of the alphabet, so you would need to change this
line:

If Selection.Column 14 Then

to suit the column number you want to wrap at.

You could also hide the columns beyond where you want to wrap, to make
it more obvious.

Hope this helps.

Pete


On Jun 19, 1:58 pm, nabanco wrote:
Thanks Mike, it worked but I have no idea why.

If I were to use this same formula in another worksheet, what section of the
below formula would I change to tell excel to wrap at column K or Z?



"Mike H" wrote:
Try this:-


Right click the sheet tab , view code anf paste this in:-


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Column 14 Then
Cells(ActiveCell.Row + 1, 1).Select
End If
End Sub


Mike


"nabanco" wrote:


Hello,


Is there a way to prevent tabbing past a certain point in a spreadsheet?


For example, if my sheet goes from column A to column N, can I block all
cursur movement beyond column N? I am trying to get it to automatically wrap
back to column A when column N is reached.


Thank you- Hide quoted text -


- Show quoted text -





All times are GMT +1. The time now is 07:14 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com