Hi all, I'm not quite sure how to explain this question but here goes !
I have a workbook that is coded to hide / disable all the Excel elements, ribbons, bars, etc when its opened as per this code:
Is there a way to have a cell for example A1, display (mirror) the contents of any cell selected on a specific worksheet so that if the user need to edit it they can make any changes they need and those changes will be applied to the actual cell. Basically the same as if I had the formula bar showing and selected any cell if would show in the formula bar.
My logical mind is saying its possible based on the fact the formula bar already does it but I have no clue on how to achieve this if it is in reality possible at all.
Of course the simplest solution would to just show the formula bar when the workbook opens but the worksheet this relates to has (or will have) a lot of formulas on it that would show and whilst I know I protect them, I'm trying to get a really 'clean' look for the workbook.
Hopefully that makes sense to someone if so I'd love to get some help on this although whilst I do have some understanding of Excel and VBA its basic !
Thank in advance for any replies.
Paul
I have a workbook that is coded to hide / disable all the Excel elements, ribbons, bars, etc when its opened as per this code:
VBA Code:
Private Sub Workbook_Open()
With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
.ExecuteExcel4Macro "Show.Toolbar(""Ribbon"",False)"
.WindowState = xlMaximized
.CommandBars("Full Screen").Visible = False
.CommandBars("Worksheet Menu Bar").Enabled = False
.DisplayStatusBar = False
.DisplayFormulaBar = False
.DisplayScrollBars = False
End With
With ActiveWindow
.DisplayWorkbookTabs = True
.DisplayRuler = False
.DisplayHeadings = False
End With
With Application
.ScreenUpdating = True
.Calculation = xlCalculationAutomatic
End With
Worksheets("Data").Visible = False
Worksheets("Search").Visible = False
End Sub
Is there a way to have a cell for example A1, display (mirror) the contents of any cell selected on a specific worksheet so that if the user need to edit it they can make any changes they need and those changes will be applied to the actual cell. Basically the same as if I had the formula bar showing and selected any cell if would show in the formula bar.
My logical mind is saying its possible based on the fact the formula bar already does it but I have no clue on how to achieve this if it is in reality possible at all.
Of course the simplest solution would to just show the formula bar when the workbook opens but the worksheet this relates to has (or will have) a lot of formulas on it that would show and whilst I know I protect them, I'm trying to get a really 'clean' look for the workbook.
Hopefully that makes sense to someone if so I'd love to get some help on this although whilst I do have some understanding of Excel and VBA its basic !
Thank in advance for any replies.
Paul