当前位置:网站首页>excel表格中选中单元格出现十字带阴影的选中效果
excel表格中选中单元格出现十字带阴影的选中效果
2022-07-02 09:38:00 【早上起床买豆浆】
基于VBA实现Excel十字交叉高亮显示
偶然需要到这个功能,微软的EXCEL表格实现选中单元格出现十字带阴影的选中效果;
找了一些方法,再次做详细记录,看此文基本解决标题所述问题。
一、格式要求
首先,文件格式必须为.xlsm格式,如果不是该格式,设置的效果在关闭excel表格后重新打开,大概率会失效。
二、具体步骤
1**、 打开vbe编辑器**
方法:ALT+F11
2、双击左侧thisworkbook标签,并粘贴代码
代码如下:
'注意此方法会去掉单元格已有的背景色
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
Cells.Interior.ColorIndex = xlNone
Target.EntireRow.Interior.Color = RGB(230, 250, 230) '行样式
Target.EntireColumn.Interior.Color = RGB(230, 250, 230) '列样式
Target.Interior.Color = RGB(255, 255, 255) '单元格样式
End Sub
然后保存该步骤。ctrl+S(弹框提示点击: 是)
3、实现效果,达到目的;
如此,便实现了excel表格中选中单元格出现十字带阴影的选中效果,希望能够帮到有需要的人,不妨点个赞。
边栏推荐
- mysql 基本语句
- PKG package manager usage instance in FreeBSD
- Mmrotate rotation target detection framework usage record
- MTK full dump抓取
- mmrotate旋转目标检测框架使用记录
- 可升级合约的原理-DelegateCall
- Calculate the sum of sequences
- Eight sorting summaries
- On April 17, 2022, the five heart matchmaker team received double good news
- MySQL比较运算符IN问题求解
猜你喜欢
II Stm32f407 chip GPIO programming, register operation, library function operation and bit segment operation
抖音海外版TikTok:正与拜登政府敲定最终数据安全协议
二.Stm32f407芯片GPIO编程,寄存器操作,库函数操作和位段操作
数字化转型挂帅复产复工,线上线下全融合重建商业逻辑
ImportError: cannot import name ‘Digraph‘ from ‘graphviz‘
Redis超出最大内存错误OOM command not allowed when used memory > 'maxmemory'
八大排序汇总
Develop scalable contracts based on hardhat and openzeppelin (II)
MySQL linked list data storage query sorting problem
Internship report skywalking distributed link tracking?
随机推荐
bedtools使用教程
spritejs
函数式接口和方法引用
PLC-Recorder快速监控多个PLC位的技巧
SQLite modify column type
Never forget, there will be echoes | hanging mirror sincerely invites you to participate in the opensca user award research
ImportError: cannot import name ‘Digraph‘ from ‘graphviz‘
MySQL basic statement
JS -- take a number randomly from the array every call, and it cannot be the same as the last time
Jinshanyun - 2023 Summer Internship
可升级合约的原理-DelegateCall
What are the software product management systems? Inventory of 12 best product management tools
Summary of data export methods in powerbi
PHP tea sales and shopping online store
[cloud native] 2.5 kubernetes core practice (Part 2)
ros缺少catkin_pkg
deepTools对ChIP-seq数据可视化
Installation of ROS gazebo related packages
接口调试工具概论
基于Hardhat和Openzeppelin开发可升级合约(二)