検索
ホームページトピックexcelExcelステータスバーがありません:それを取り戻す方法

In this article, you'll learn how to resolve the issue of the Excel status bar disappearing. Also, you'll discover a quick way to hide the status bar and show it again by using keyboard shortcuts and VBA macros.

When it comes to the analysis of various data sets, the Excel status bar emerges as a vital component, providing users with a wealth of essential information and quick access to key features. However, there are situations where the status bar mysteriously disappears, leaving users puzzled and unable to access its features. If you find yourself in this situation, don't worry! We'll guide you through some common scenarios and explain how to restore the missing status bar in Excel.

Get status bar by exiting Excel full screen mode

One possible cause of the disappearing status bar is that your workbook is in full screen mode. In this mode, Excel hides the ribbon and status bar to give you more screen space. Fortunately, there's a simple solution to bring back the status bar. To toggle between full screen view and normal screen view, use the Ctrl + Shift + F1 keyboard shortcut. By pressing these keys together, you can switch the Excel window back to its normal view, allowing the status bar to reappear.

Excelステータスバーがありません:それを取り戻す方法

Note. This method hides both Excel status bar and ribbon. To only hide the status bar, use VBA as explained further in this article.

Turn status bar back on by disabling Excel focus mode

Navigating through Microsoft Excel in a dynamic workspace or time-sensitive situation can lead to accidentally triggering certain key combinations that you may not even be aware of. One such combination is the extended full screen mode, also known as full screen reading view or focus mode, which can cause the status bar to vanish. The focus mode is activated by pressing the Alt + V keys together, and then pressing the U key.

To exit the focus mode and regain access to the status bar, you simply press the Esc key.

Excelステータスバーがありません:それを取り戻す方法

Unhide status bar by maximizing Excel window

Another scenario that can cause the Excel status bar not showing is when the Excel window is not maximized, commonly referred to as the windowed mode. If the window has been repositioned in such a way that the status bar is located below the screen, overlapped by the Windows taskbar, it may seem as though the status bar has disappeared. However, it is still present, albeit not visible.

To resolve this issue, there are two simple methods. Firstly, you can move the Excel window upwards, ensuring that the status bar is no longer obstructed by the Windows taskbar. Alternatively, click on the Maximize icon in the top-right corner of the Excel window. By maximizing the window, the status bar will become visible once again, readily accessible for your convenience.

Excelステータスバーがありません:それを取り戻す方法

Hide and unhide status bar in Excel with VBA

In earlier versions of Excel, there was a straightforward way to show or hide the status bar through Excel options. However, starting with Excel 2007, the status bar can only be managed using VBA. If you find yourself needing to hide or fix a missing status bar in Excel, follow these step-by-step instructions:

  1. Press Alt + F11 to open the Microsoft Visual Basic Editor window.
  2. Press Ctrl + G to open the Immediate window within the Visual Basic Editor.
  3. In the Immediate window, type one of the following lines based on your desired action:
    • To hide the status bar: Application.DisplayStatusBar = False
    • To unhide the status bar: Application.DisplayStatusBar = True
  4. Press Enter to execute the VBA code.
  5. Close the Visual Basic Editor by clicking the Close button or pressing the Alt + Q shortcut.
  6. Save your Excel file using a macro-enabled extension (.xlsm).

Excelステータスバーがありません:それを取り戻す方法

Once you return to your Excel worksheet, check the status bar. It's important to note that unlike the Ctrl + Shift + F1 shortcut, which hides both the ribbon and the status bar, this VBA method specifically hides or unhides the status bar only, leaving the ribbon unaffected.

Excelステータスバーがありません:それを取り戻す方法

Note. When you hide the status bar using VBA, you'll need to use VBA again to unhide it.

Hide and show Excel status bar using macro

To avoid manual modification of the VBA code each time you want to hide the status bar in Excel or make it visible again, you can automate the process by creating macros specifically designed for these actions.

Macro to hide status bar

To hide the status bar in Excel, use this code:

VBA code to hide status bar in Excel
Sub Hide_status_bar() Application.DisplayStatusBar = False End Sub

Macro to show status bar

To unhide the status bar, add this code:

VBA code to show status bar in Excel
Sub Show_status_bar() Application.DisplayStatusBar = True End Sub

To add the macros to your workbook, follow these instructions:

  1. Press Alt + F11 to open the Visual Basic Editor.
  2. In the left pane of the editor, right-click on ThisWorkbook and select Insert > Module from the context menu.
  3. Copy and paste the VBA codes into the code window on the right.
  4. Save your Excel file as a Macro-Enabled Workbook (*.xlsm).

For more detailed instructions, you can refer to the guide How to insert VBA code in Excel.

Once you have added the macros to your workbook, you can execute them by following these steps:

  1. In your Excel workbook, press Alt + F8 to open the Macro dialog box.
  2. Choose the desired macro from the list.
  3. Click the Run button to execute the selected macro.

That's it! You can now quickly hide or show your Excel status bar whenever you need without extra hassle.

Excelステータスバーがありません:それを取り戻す方法

In conclusion, if you find that the status bar is missing in your Excel, don't panic. It's likely that it's simply hidden due to specific settings or configurations. By following the steps outlined in this article, you can easily bring it back or toggle its visibility and continue working efficiently in Excel.

Practice workbook for download

Show and hide Excel status bar (.xlsm file)

以上がExcelステータスバーがありません:それを取り戻す方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
Excelの式の中央値 - 実用的な例Excelの式の中央値 - 実用的な例Apr 11, 2025 pm 12:08 PM

このチュートリアルでは、中央値関数を使用してExcelの数値データの中央値を計算する方法について説明します。 中央傾向の重要な尺度である中央値は、データセットの中央値を識別し、中央の傾向のより堅牢な表現を提供します

式の例を備えたGoogleスプレッドシートcountif機能式の例を備えたGoogleスプレッドシートcountif機能Apr 11, 2025 pm 12:03 PM

マスターグーグルシートcountif:包括的なガイド このガイドでは、Googleシートの多用途のCountif機能を調査し、単純なセルカウントを超えてそのアプリケーションを実証しています。 正確な一致や部分的な一致から漢までのさまざまなシナリオをカバーします

Excel共有ワークブック:複数のユーザーのExcelファイルを共有する方法Excel共有ワークブック:複数のユーザーのExcelファイルを共有する方法Apr 11, 2025 am 11:58 AM

このチュートリアルは、さまざまな方法、アクセス制御、競合解決をカバーするExcelワークブックを共有するための包括的なガイドを提供します。 Modern Excelバージョン(2010、2013、2016、およびその後)共同編集を簡素化し、mの必要性を排除します

Excelをjpgに変換する方法 -  .xlsまたは.xlsxを画像ファイルとして保存しますExcelをjpgに変換する方法 - .xlsまたは.xlsxを画像ファイルとして保存しますApr 11, 2025 am 11:31 AM

このチュートリアルでは、.xlsファイルを.jpg画像に変換するためのさまざまな方法を調査し、ビルトインWindowsツールと無料のオンラインコンバーターの両方を網羅しています。 プレゼンテーションを作成したり、スプレッドシートデータを安全に共有したり、ドキュメントを設計したりする必要がありますか?ヨーヨーを変換します

名前と名前付き範囲:フォーミュラで定義および使用する方法名前と名前付き範囲:フォーミュラで定義および使用する方法Apr 11, 2025 am 11:13 AM

このチュートリアルは、Excel名の機能を明確にし、セル、範囲、定数、または式の名前を定義する方法を示します。 また、定義された名前の編集、フィルタリング、削除もカバーしています。 Excelの名前は、信じられないほど便利ですが、しばしばOverloです

標準偏差Excel:関数と式の例標準偏差Excel:関数と式の例Apr 11, 2025 am 11:01 AM

このチュートリアルは、標準偏差と平均の標準誤差の区別を明確にし、標準偏差計算のための最適なExcel関数を導きます。 記述統計では、平均および標準偏差は内在的です

Excelの平方根:SQRT関数およびその他の方法Excelの平方根:SQRT関数およびその他の方法Apr 11, 2025 am 10:34 AM

このExcelチュートリアルでは、正方形の根とNth Rootsを計算する方法を示しています。 平方根を見つけることは一般的な数学的操作であり、Excelはいくつかの方法を提供します。 Excelの正方形の根を計算する方法: SQRT関数を使用します

Googleシートの基本:Googleスプレッドシートでの作業方法を学ぶGoogleシートの基本:Googleスプレッドシートでの作業方法を学ぶApr 11, 2025 am 10:23 AM

Googleシートのパワーのロックを解除:初心者向けガイド このチュートリアルでは、MS Excelに代わる強力で多目的な代替品であるGoogleシートの基礎を紹介します。 スプレッドシートを簡単に管理し、重要な機能を活用し、コラボレーションする方法を学ぶ

See all articles

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

AI Hentai Generator

AI Hentai Generator

AIヘンタイを無料で生成します。

ホットツール

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser は、オンライン試験を安全に受験するための安全なブラウザ環境です。このソフトウェアは、あらゆるコンピュータを安全なワークステーションに変えます。あらゆるユーティリティへのアクセスを制御し、学生が無許可のリソースを使用するのを防ぎます。

SublimeText3 Linux 新バージョン

SublimeText3 Linux 新バージョン

SublimeText3 Linux 最新バージョン

MantisBT

MantisBT

Mantis は、製品の欠陥追跡を支援するために設計された、導入が簡単な Web ベースの欠陥追跡ツールです。 PHP、MySQL、Web サーバーが必要です。デモおよびホスティング サービスをチェックしてください。

WebStorm Mac版

WebStorm Mac版

便利なJavaScript開発ツール