Zelf gebruik ik regelmatig de optie om cellen via validatie te beveiligen. Ik geef dan aan dat de cel maximaal en minimaal 0 karakters mag bevatten. Wanneer er, op dat moment, al iets in de cel staat, blijft dit gewoon staan. Veranderingen zijn niet meer mogelijk zonder die validatie op te heffen.
How to lock or freeze worksheet tab in Excel?
Supposing you have a workbook which contains multiple worksheets, there is a worksheet named Main-sheet as the first tab in the workbook. And now, you want to try to lock or freeze this sheet tab to make it always visible even when scrolling across a number of worksheets. In fact, there is no direct way for you freeze the tab, but, you can use a workaround to deal with this problem.
Freeze / Unfreeze panes multiple worksheets: | |
Kutools for Excel’s Freeze / Unfreeze panes multiple worksheets can help you freeze or unfreeze all worksheets within your workbook with one click. |
Lock or freeze a specific worksheet tab with VBA code
Amazing! Using Efficient Tabs in Excel Like Chrome, Firefox and Safari!
Save 50% of your time, and reduce thousands of mouse clicks for you every day!
In Excel, we can apply the following VBA code to make the specific worksheet always before your current clicked worksheet tab, so that you can always see this worksheet when you scroll across any other sheet tabs. Please do as follows:
1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
2. Then choose ThisWorkbook from the left Project Explorer pane, double click it to open the Module, and then copy and paste following VBA code into the blank Module:
VBA code: Freeze or lock a specific worksheet tab
3. And then save and close this code, now, when you click any of your worksheet tab, this specific worksheet will be always at the front of your clicked sheet tab, see screenshots:
Note: In the above code, the Main-sheet is the sheet name that you want to freeze, you can change it to your need.
Related articles:
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
or post as a guest, but your post won't be published automatically.
- To post as a guest, your comment is unpublished.chăng đc gi cả
- To post as a guest, your comment is unpublished.As Thuyen pointed out 2 years ago, you can't copy data between sheets while this code is active. Furthermore, the code is needlessly complicated. The sheet that you activate is passed to the procedure as the parameter 'Sh'. This makes the frequent calls to 'ActiveSheet' unnecessary, and could cause problems for someone who's trying to modify the code but isn't very experienced.
Here's my versions that corrects those issues, and even shows how to add a 2nd 'Main' sheet (similar to what Dzingai posted):
-----------------------------------------------------------------
'These 2 lines aren't necessary if you use the sheets' codenames, which I recommend.
Set shtMain1 = Worksheets('Main-Sheet-1')
Set shtMain2 = Worksheets('Main-Sheet-2')
If Application.CutCopyMode = False Then
If Sh.Index <> shtMain1.Index And Sh.Index <> shtMain2.Index Then
shtMain1.Move before:=Sh
shtMain2.Move before:=Sh
Sh.Activate
End If
End If - To post as a guest, your comment is unpublished.This code worked well. Only problem is...if we close the file & open it again it goes off.
- To post as a guest, your comment is unpublished.[quote name='Sangs']This code worked well. Only problem is...if we close the file & open it again it goes off.[/quote]
Try saving document as Macro-Enabled Workbook. I think it should work well that way.
- To post as a guest, your comment is unpublished.Is it possible to create one with multiple arguments? Like instead of just moving the one main sheet to the front of where you are working, is it possible to move three tabs in front of what you are working on?
- To post as a guest, your comment is unpublished.Yes, it is possible, you just have to add more arguments to the if clause using the 'AND' like this
IF Application.ActiveSheet.Index Application.Sheets('Main-sheet').Index AND Application.ActiveSheet.Index Application.Sheets('Other-Main-sheet').Index and so on...
Then
Application.Sheets('Main-sheet').Move Before:=Application.Sheets(Application.Sheets('Other-Main-sheet').Index)
Application.Sheets('Main-sheet').Activate
Application.Sheets('Other-Main-sheet').Move Before:=Application.Sheets(Application.ActiveSheet.Index)
Application.Sheets('Other-Main-sheet').Activate
Sh.Activate
This will place the Main-Sheet, then the Other-Main-Sheet in front of your active sheet.
- To post as a guest, your comment is unpublished.Could not get your code to work, but this one did :)
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
Dim sc As Long ' count of sheets
Dim NewPos As Long ' index of serlected sheet
Application.EnableEvents = False
Application.ScreenUpdating = False
If ActiveSheet.Index 1 Then
sc = Sheets.Count
NewPos = ActiveSheet.Index
For i = 2 To NewPos - 1
Sheets(2).Move After:=Sheets(sc)
Next i
Sheets(1).Activate
Sheets(2).Activate
End If
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub - To post as a guest, your comment is unpublished.When I use VBA, I cannot copy data from Main-Sheet to another sheet
Please help me fix this bug
How to lock column width in pivot table?
When you create a pivot table and change the field time and time again, have you noticed that the column width is changed as same time? But if you want to set the column width static in pivot table, do you have any idea to lock the column width of pivot table in Excel?
Cel Op Slot Zetten Excel
- Reuse Anything: Add the most used or complex formulas, charts and anything else to your favorites, and quickly reuse them in the future.
- More than 20 text features: Extract Number from Text String; Extract or Remove Part of Texts; Convert Numbers and Currencies to English Words.
- Merge Tools: Multiple Workbooks and Sheets into One; Merge Multiple Cells/Rows/Columns Without Losing Data; Merge Duplicate Rows and Sum.
- Split Tools: Split Data into Multiple Sheets Based on Value; One Workbook to Multiple Excel, PDF or CSV Files; One Column to Multiple Columns.
- Paste Skipping Hidden/Filtered Rows; Count And Sum by Background Color; Send Personalized Emails to Multiple Recipients in Bulk.
- Super Filter: Create advanced filter schemes and apply to any sheets; Sort by week, day, frequency and more; Filter by bold, formulas, comment...
- More than 300 powerful features; Works with Office 2007-2019 and 365; Supports all languages; Easy deploying in your enterprise or organization.
Lock column width in pivot table
Amazing! Using Efficient Tabs in Excel Like Chrome, Firefox and Safari!
Save 50% of your time, and reduce thousands of mouse clicks for you every day!
It is easy for you to lock the column width of pivot table after creating your pivot table, please do as this:
1. Click a cell in the pivot table.
2. Then right click, and choose PivotTable Options from the context menu, see screenshot:
3. In the PivotTable Options dialog, under Layout & Format tab, uncheck Autofit column widths on update option, see screenshot:
4. And then click OK, from now, the column width will not be changed with your operations.
Related articles:
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
or post as a guest, but your post won't be published automatically.
- To post as a guest, your comment is unpublished.Muito Obrigada!!