If you are developing Web pages in Excel, it is a good idea to have in mind who the user is. The user, obviously, is the person who will view your Web page. However, there are certain assumptions that must be made about the user, and those assumptions will affect how you put your Web page together.
One of the prime considerations is what resolution of monitor the user will be using. This affects the presentation of graphics and text on their page. For instance, a graphic that shows up nicely centered on your screen at a high resolution may not give the desired impact if the user is working at a lower resolution.
You can instruct Excel to make certain assumptions about the user's monitor resolution as you are developing Web pages. You set the target resolution by following these steps:
Figure 1. The Pictures tab of the Web Options dialog box.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (6222) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Office 365. You can find a version of this tip for the older menu interface of Excel here: Specifying Your Target Monitor.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
If you open workbooks in two instances of Excel, you can use drag-and-drop techniques to create hyperlinks from one ...
Discover MoreYou can configure images in Excel so that if someone clicks on them, a macro is executed. You cannot, however, have a ...
Discover MoreHyperlinks in a worksheet can be helpful or essential, depending on the nature of your data. If you create a link to a ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2015-01-19 08:57:53
You can read a screen's resolution, kinda, by placing this in the Workbook_Open event (with global variables):
ActiveWindow.Zoom = 100
Application.DisplayFullScreen
height = ActiveWindow.VisibleRange.height
width = ActiveWindow.VisibleRange.width
Then place your elements accordingly.
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 © 2021 Sharon Parq Associates, Inc.
Comments