Does this problem only apply to a particular workbook or does it apply to all workbooks?
If only with a particular workbook then does the workbook have any macros (VBA code)? Because the scroll bar might be turned off with VBA code.
You could try the following VBA code to turn on the scroll bars.
Irrespective of whether there is any existing VBA code, do this anyway. I’ll give you some guidelines to install the code in case you are not familiar with VBA.
Alt/F11 to open the VBA editor.
In the VBA Editor, Click on menu item Insert and then click Module in the drop down.
If VBA code already exists then in the Project Explorer on the left, take note of the module name you inserted. It should have light shading.
Copy the following code (between the asterisk lines only) and paste it into the white area of the editor.
'**************************************************
Sub DispScrollBars()
ActiveWindow.DisplayHorizontalScrollBar = True
End Sub
'**************************************************
Place the cursor anywhere in the sub by clicking anywhere between Sub DispScrollBars and End sub.
Press F5 to run the code.
Close the VBA editor by clicking on the cross with the red background top right of window.
Check if the scroll bar is visible.
You can delete the macro code by opening the VBA editor again with Alt/F11.
In the Project Explorer on the left, double click the module name you inserted and ensure that the code you just copied in is displayed. If any other code is displayed then it is probably code
that should remain in the workbook so ensure that you have the correct module by double clicking the modules until you find the correct one.
In the Project Explorer on the left, Right click the module name that you inserted.
Select Remove ModuleX where X is the number of the module you inserted.
Answer No
to the question “Do you want to Export.........”
Close the VBA editor again by clicking the X with the red background top right of window.
If the code works and you continue to have a problem when you re-open the workbook and there is existing VBA code then the problem is probably in the code. You could open the VBA editor again
and use menu item Edit -> Find and search for "DisplayHorizontalScrollBar" without the quotes. In the Find dialog box Set the search criteria to Current project