Hide the Entire Excel Interface - Ribbon Menu, Quick Access Toolbar, Status Bar, and More - EQ 81

Hide the Entire Excel Interface - Ribbon Menu, Quick Access Toolbar, Status Bar, and More - EQ 81

TeachExcel

3 года назад

44,365 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Ailson Mendes
Ailson Mendes - 08.09.2023 13:38

Hello @TeachExcel!
First of all thanks a lot for such amazing content! It's exactly what I was looking for, however must say that I need further help. Even implementing this logic inside <ThisWorkbook> it's affecting all other excel files opened. How can I guarantee that all these hidden functions will only work in one specific excel file?
Thank you!!

Ответить
Scott
Scott - 31.08.2023 21:46

I do not see the same information when clicking on module that is shown. I do not even get the module option to see the information that is being shown. Trying to hide everything on excel document to have a clean looking dashboard but this doesn't seem to work with multiple hidden sheets and pivot tables.

Ответить
J. Sark
J. Sark - 14.10.2022 03:27

You have a weird sounding voice.

Ответить
GDark
GDark - 12.10.2022 13:14

Is there a way to hide it when ever you start that file by default. So any time I run that file its hidden without me having to run it as macro ?

Ответить
John Holliday
John Holliday - 26.08.2022 21:19

I just add a boolean variable to the Sub. So: Sub HideInterface(lblnVisibleState)
Then at the end of each of line, add = lblnVisibleState instead of true or false.
So you just call the HideInterface Sub and put "True" or "False" after your call.

Ответить
Dhananjaya Rajakaruna
Dhananjaya Rajakaruna - 22.05.2022 21:35

Is there any way to open excel without tool bar ?

Ответить
Manoj Jha
Manoj Jha - 18.05.2022 14:54

👍

Ответить
David Lovins
David Lovins - 18.02.2022 19:21

Can this be used to remove specific items from the Ribbon. For example the Refresh All option or the entire Queries and Connections section under the data ribbon.

Ответить
Chadee Fouad
Chadee Fouad - 19.07.2021 08:24

A bit of a modification 1 sub instated of 2...this will toggle the status
Sub Toggle_Hide_Excel_Interface()

'Shows/Hides the Entire Excel Interface
If ActiveWindow.DisplayHeadings = True Then Setting = False Else Setting = True
ActiveWindow.DisplayHeadings = Setting
ActiveWindow.DisplayHorizontalScrollBar = Setting
ActiveWindow.DisplayVerticalScrollBar = Setting
ActiveWindow.DisplayWorkbookTabs = Setting
Application.DisplayFormulaBar = Setting
Application.DisplayStatusBar = Setting
Application.ExecuteExcel4Macro "show.toolbar(""Ribbon"", " & Setting & ")"
End Sub

Ответить
ambirdReal
ambirdReal - 10.06.2021 15:54

Thank you soo much exactly what I needed 👍👌

Ответить
misc use
misc use - 13.04.2021 06:15

Hi, just discovered this video. Great tutorial but i'm beginner in excel so i want to solve my problem but can't find the right keywords for the problem.

Here's the idea : Whenever i input number/text to spesific cell (ex : cell A1) then the cell move automatically to the next row/column so i can input the data without click the next cell manually. How i do that? With macro or not? Hope you or whoever saw this comment understand and can help me. Thanks

Ответить
Exceλambda
Exceλambda - 09.04.2021 11:13

Super cool trick!!✌😊

Ответить
Wayne Edmondson
Wayne Edmondson - 09.04.2021 09:08

Nice one! Thanks for the tips :)) Thumbs up!!

Ответить
Alexa Kelemen-Eordogh
Alexa Kelemen-Eordogh - 08.04.2021 19:19

Wow, cool!

Ответить
Kolavit Honduraski
Kolavit Honduraski - 08.04.2021 17:40

thanks for that awesome Video.

If i do this, it manipulates every excel instance i open... is there a possibility to use this only on that specific workbook ?
And the other excel-workbooks stay the same as they were before ?

Ответить
notNickWoz
notNickWoz - 08.04.2021 16:44

Been doing this for years.

Pro tip: put this on an “open” sub, so it runs whenever it opens the specific excel workbook and the show all on the close, so it resets it back.

Ответить
Vikaas’isms’ wt comes 4rm Heart, goes 2 the Hearts
Vikaas’isms’ wt comes 4rm Heart, goes 2 the Hearts - 08.04.2021 15:05

Awesome

Ответить