怎么使EXCEL里數(shù)據(jù)有效性列表顯示得更大些?
在使用excel時,當使用數(shù)據(jù)有效性創(chuàng)建下拉列表時,不能夠改變字體或字體大小。如果縮小工作表的尺寸,那么將難以閱讀列表中的項目。
要使列表中的文本看起來更大,可以使用VBA代碼,使得在選擇數(shù)據(jù)有效性單元格時增大工作表縮放尺寸設(shè)置,從而使數(shù)據(jù)有效性列表中的文本看起來更大。
下面的代碼在選擇數(shù)據(jù)有效性列表單元格時將工作表的尺寸縮放為120%。如果選擇的單元格中沒有設(shè)置數(shù)據(jù)有效性,那么工作表尺寸縮放為100%。
代碼
Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim lZoom As Long Dim lZoomDV As Long Dim lDVType As Long lZoom = 100 lZoomDV = 120 lDVType = 0 Application.EnableEvents = False On Error Resume Next lDVType = Target.Validation.Type On Error GoTo errHandler If lDVType <> 3 Then With ActiveWindow If .Zoom <> lZoom Then .Zoom = lZoom End If End With Else With ActiveWindow If .Zoom <> lZoomDV Then .Zoom = lZoomDV End If End With End If exitHandler: Application.EnableEvents = True Exit SuberrHandler: GoTo exitHandlerEnd Sub |
繼續(xù)查找其他問題的答案?
-
Excel 2019如何使用復制、粘貼命令插入Word數(shù)據(jù)?(視頻講解)
2021-01-257次播放
-
Excel 2019如何制作數(shù)據(jù)透視表?(視頻講解)
2021-01-2227次播放
-
Excel 2019如何設(shè)置相對引用?(視頻講解)
2021-01-2210次播放
-
2021-01-2212次播放
-
2021-01-226次播放
-
2021-01-223次播放
-
2021-01-222次播放
-
Excel 2019如何利用開始選項卡進入篩選模式?(視頻講解)
2021-01-223次播放
-
Excel 2019如何設(shè)置指定數(shù)據(jù)的篩選?(視頻講解)
2021-01-223次播放
-
Excel 2019如何設(shè)置自定義排序?(視頻講解)
2021-01-222次播放
點擊加載更多評論>>