- 博客(10)
- 收藏
- 关注
原创 将多个sheet页拆分成多个单独的excel
1、按住 ALT + F11 键打开 Microsoft Visual Basic for Applications 窗口或者是在sheet页的名字处右键,点击查看代码2、 点击 插入 > 模块,并将以下代码粘贴到模块窗口中。Private Sub 分拆工作表()Dim sht As WorksheetDim MyBook As WorkbookSet M...
2019-09-19 10:09:47 7893
原创 excel根据sheet页中的特定列或行数将数据拆分为多个sheet页
1、按住 ALT + F11 键打开 Microsoft Visual Basic for Applications 窗口或者是在sheet页的名字处右键,点击查看代码2、 点击 插入 > 模块,并将以下代码粘贴到模块窗口中。Sub Splitdatabycol()Dim lr As LongDim ws As WorksheetDim vcol, i As Integ...
2019-09-19 09:56:38 2767
原创 将多个excel合并成一个excel
一、确保需要合并的excel的表头一致二、将需要合并的excel放在一个文件夹内 三、新建一个汇总的excel四、数据-新建查询-从文件-从文件夹,选择新建的文件夹五、选择文件夹之后,点击编辑-将content以外的列全部删除(点表头右键删除其他列)六、添加列→自定义列→新列名取个你喜欢的名字,自定义列公式Excel.Workbook([...
2019-09-17 15:03:39 1845
原创 WIN10联想电脑WiFi图标不见了
Windows+X+A 打开命令提示符,输入:netsh winsock reset电脑重启后就可以显示了
2019-07-09 09:58:17 5865 1
原创 Axure RP 9最新版软件及汉化包下载
官方安装包下载地址(速度较慢)下载Axure RP 9 Beta MAC版:https://axure.cachefly.net/AxureRP-Setup-Beta.dmg下载Axure RP 9 Beta PC版:https://axure.cachefly.net/AxureRP-Setup-Beta.exeAxure中文汉化包下载地址下载汉化包:20190114162...
2019-02-28 16:55:50 28940 7
原创 python 上传下载oss文件
# -*- coding: utf-8 -*-import oss2endpoint = 'http://oss-cn-hangzhou.aliyuncs.com' # Suppose that your bucket is in the Hangzhou region.auth = oss2.Auth('<Your AccessKeyID>', '<Your AccessK...
2018-12-04 09:47:23 1611
原创 编译PHP报错:configure: error: Please reinstall the BZip2 distribution
checking for BZip2 support… yes checking for BZip2 in default path… not found configure: error: Please reinstall the BZip2 distribution解决办法:yum -y install bzip2-devel
2018-07-20 09:08:49 2900
原创 编译PHP报错:configure: error: xml2-config not found. Please check your libxml2 installation
checking libxml2 install dir... /usr/localchecking for xml2-config path...configure: error: xml2-config not found. Please check your libxml2 installation. 解决办法:首先检查安没安装libxml2包rpm -qa|grep ...
2018-07-20 09:05:54 2696
原创 mysql 给用户赋权和删除权限
mysql通过 GRANT 授予权限 , REVOKE 撤销权限授予用户权限:grant all privileges on 层级 to 用户名@主机 identified by '密码';授予wang用户全局级全部权限:grant all privileges on *.* to 'wang'@'%' identified by 'wang';授予wang用户针对xsgl数据库全...
2018-07-19 09:33:56 7411 1
原创 linux下mysql-5.7 忘记root密码,重置root密码详细过程
1.首先确认服务器出于安全的状态,也就是没有人能够任意地连接MySQL数据库。 因为在重新设置MySQL的root密码的期间,MySQL数据库完全出于没有密码保护的 状态下,其他的用户也可以任意地登录和修改MySQL的信息。可以采用将MySQL对外的端口封闭,并且停止Apache以及所有的用户进程的方法实现服务器的准安全状态。最安全的状态是到服务器的Console上面操作,并且拔掉网线。2.修...
2018-07-18 09:40:21 6748
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人