Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Magnifying Only the Current Cell.
Written by Allen Wyatt (last updated March 5, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365
Brian asked if there is a way in Excel to magnify the contents of the current cell. He's working on a worksheet which needs to be at a low zoom setting (30% or so) to see the whole sheet. As different scenarios are run, cells change color depending on the result. Brian can easily see which cells he needs to investigate, but he can't read them because of the zoom setting. He normally changes the zoom, reads the answer, and zooms back out to run another scenario. It would be much easier if only the current cell (the one selected) were magnified to a readable level.
There is no built-in method in Excel to accomplish this selective method of zooming, but the Magnifier (an Ease of Access tool provided in Windows) may do just what Brian wants. The program magnifies the area near the mouse pointer, overlaying another area of the screen with the enlarged image. You can kick the Magnifier tool into gear by holding down the Windows key (the one that has the Windows logo on it) and pressing the + key on the numeric keypad. The screen is magnfied. Press the Windows key again and then the Ð (minus) key and the screen goes back to normal. You can find out more information about the Magnifier in this WindowsTip:
https://tips.net/T12562
If you are bound and determined to do the magnification within Excel, there are a couple of workarounds you can try. One such workaround is to use a macro that displays the value in the active cell in a message box. Such a macro is easy to add to the worksheet module:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
MsgBox ActiveCell.Address & ": " & ActiveCell.Value
End Sub
Every time you select a different cell in the worksheet, the macro pops up a message box that shows the contents of that cell. This solves the problem, but it can get tiresome to continually close message boxes every time you change which cell is selected.
You could also create a macro that simply changed the font size of whatever cell is currently selected. The following simple macro, added to the worksheet module, looks at the currently selected cell and increases its font size by 500%.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
FontSize = ActiveCell.Font.Size
LargeSize = FontSize * 5
Cells.Font.Size = FontSize
ActiveCell.Font.Size = LargeSize
End Sub
The utility of such a macro will depend, of course, on how you have the height and width of the selected cell formatted. If they are static heights and widths, it is possible that increasing the font size will make the cell contents unreadable. If the height and width are dynamic, then the contents should still be quite readable.
Still another approach is to create your own zoomed-in picture of each cell as it is selected:
Private Sub ZoomCell(ZoomIn As Single)
Dim s As Range
Set s = Selection
'Get rid of any existing zoom pictures
For Each p In ActiveSheet.Pictures
If p.Name = "ZoomCell" Then
p.Delete
Exit For
End If
Next
'Create a zoom picture
s.CopyPicture Appearance:=xlScreen, _
Format:=xlPicture
ActiveSheet.Pictures.Paste.Select
With Selection
.Name = "ZoomCell"
With .ShapeRange
.ScaleWidth ZoomIn, msoFalse, _
msoScaleFromTopLeft
.ScaleHeight ZoomIn, msoFalse, _
msoScaleFromTopLeft
With .Fill
.ForeColor.SchemeColor = 9
.Visible = msoTrue
.Solid
End With
End With
End With
s.Select
Set s = Nothing
End Sub
In order to use the macro, you need to call it each time the selection in the worksheet changes. To do this, you add a small macro to the worksheet module:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
ZoomCell 6
End Sub
In this case, every time the cell selection is changed, the ZoomCell macro is run to create a picture that is six times the size of the original. If it gets bothersome to have the picture automatically change every time you select a different cell, you could do away with the trigger macro in the worksheet module and modify the ZoomCell macro so that it runs whenever you initiate it, perhaps with a shortcut key that you set up.
Sub ZoomCell()
Dim s As Range
Dim ZoomIn As Single
Set s = Selection
ZoomIn = 6
'Get rid of any existing zoom pictures
For Each p In ActiveSheet.Pictures
If p.Name = "ZoomCell" Then
p.Delete
Exit For
End If
Next
'Create a zoom picture
s.CopyPicture Appearance:=xlScreen, _
Format:=xlPicture
ActiveSheet.Pictures.Paste.Select
With Selection
.Name = "ZoomCell"
With .ShapeRange
.ScaleWidth ZoomIn, msoFalse, _
msoScaleFromTopLeft
.ScaleHeight ZoomIn, msoFalse, _
msoScaleFromTopLeft
With .Fill
.ForeColor.SchemeColor = 9
.Visible = msoTrue
.Solid
End With
End With
End With
s.Select
Set s = Nothing
End Sub
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10426) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Magnifying Only the Current Cell.
Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!
The Text-to-Columns tool is an extremely powerful feature that allows you to divide data in a variety of ways. Excel even ...
Discover MoreWhen reading information from a text file, your macro may need to start reading at a place other than the beginning of ...
Discover MoreYou can run a Personal.xlsb macro from within your Workbook_Open code, but you may get an error if you don't make sure ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-03-05 10:43:48
ed
This user function would be more valuable to me if the FORMULA content of the cell was put into a dialog box. Multi-line formulas are not visible without expanding the formula bar, which is a pain. Putting the content into a dialog box would allow ability to copy the dialog box content for placement elsewhere. The dialog box would allow for easy dismissal of the information.
Even using the dialog box view instead of a picture for the current function would simplify the dismissal of the information.
2026-03-05 05:20:08
Barry
This Tip is fantastic. I am of an age where eyesight isn't as good as it use to be and I am often having to 'lean into the screen ' and squint to see the smaller detail. But not any more :).
I am using Excel (and Word) with Windows 11. This magnifier is just fantastic. Zoom in and Out with just the toggle keys: Cntrl+Alt+- (minus key on num keypad) combinations.
It is worth looking into Settings to tweek things to suit you. Like change the 'step' of the magnifier.
The Windows help page at
https://support.microsoft.com/en-us/windows/use-magnifier-to-make-things-on-the-screen-easier-to-see-414948ba-8b1c-d3bd-8615-0e5e32204198
spells out exacty what can be adjusted.
2022-03-19 06:13:12
Kiwerry
Thanks, Allen.
I tried the magnifier and found that the first W&+ (hold Windows key down, press numeric pad +) simply opened the magnifier window; the contents remained unscaled. Each further W&+ use increased the zoom; furthermore, one could still work normally (select, edit) within the magnifier - something the Message Box and Picture solutions don't allow.
On my W10 machine W&- (hold Windows key down, press numeric pad -) did nothing but reduce the zoom; once it was back at 1:1 the combination had no effect. To close the magnifier use W&Esc (hold Windows key down, press Esc key).
P.S. Apologies for the unfinished comment below; I pressed Return too quickly.
2022-03-19 06:02:43
Kiwerry
Thanks, Allen.
I tried the magnifier and found that the first W&+ (hold Windows key down, press numeric pad +) simply opened the magnifier window; the contents remain unscaled. Each further W&+ use increased the zoom.
On my W10 machine W&- (hold Windows key down, press numeric pad -) did nothing, but W&Esc (hold Windows key down, press Esc key)
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments