摘要: 新建个汇总文件, 运行vba代码合并 VBA代码如下: Sub 合并目录所有工作簿全部工作表() Dim MP, MN, AW, Wbn, wn Dim Wb As Workbook Dim i, a, b, d, c, e Application.ScreenUpdating = False MP 阅读全文
posted @ 2020-06-12 22:11 亚历山大88 阅读(1031) 评论(0) 推荐(0) 编辑
摘要: 情景: 由于数据量大,sheet页数多,手工拷贝比较麻烦,也容易出错 条件: 一个worksheet里面的多个sheet中的数据都是一样的格式,就是说都有head line, 字段数也是一样的,只是数据和行数不一样. 方案: 使用vba效率高,速度快. 步骤: 1. 在要合并的excel中新建一个空 阅读全文
posted @ 2020-06-03 14:59 亚历山大88 阅读(2886) 评论(0) 推荐(0) 编辑
摘要: 参考 https://stackoverflow.com/a/38994837/9574505 阅读全文
posted @ 2019-05-16 14:45 亚历山大88 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 参考官网文档安装, 下面是遇到的几个问题: 1. On the "Mapping" tab, clear the chechbox "Invoke handler only if request is mapped to:". This ensures that the handler is als 阅读全文
posted @ 2019-05-06 20:31 亚历山大88 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 隐藏方法: https://github.com/WICG/controls-list/blob/gh-pages/explainer.mdhttps://developers.google.com/web/updates/2017/03/chrome-58-media-updates#contro 阅读全文
posted @ 2019-04-24 09:45 亚历山大88 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 项目情景: 当用户选择几个item之后,点击 查看 按钮之后, 页面跳转到展示items详情页面. 实现: 如果可以使用get请求, 直接在前端使用windows.loaction.href = "newUrl="xxx"&item=itemValue1&item=itemValue2"就行了 这样 阅读全文
posted @ 2019-04-22 13:53 亚历山大88 阅读(12230) 评论(0) 推荐(0) 编辑
摘要: @SlingServlet( resourceTypes = "geometrixx/components/homepage", selectors = "data", extensions = "html", methods = {"GET", "POST"}, metatype =true) p 阅读全文
posted @ 2019-04-19 21:55 亚历山大88 阅读(172) 评论(0) 推荐(0) 编辑
摘要: Question: Can we pass in parameters? <div data-sly-use.myClass=”${ ‘mysite.myproject.HeaderComponent‘ @ param1=currentPage, param2=‘advanced‘ }”> ${ m 阅读全文
posted @ 2019-04-17 19:52 亚历山大88 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 自定义Predicate: 使用predicate: 参考 https://forums.adobe.com/thread/2326696 阅读全文
posted @ 2019-04-11 15:56 亚历山大88 阅读(1393) 评论(0) 推荐(0) 编辑
摘要: 目的: 不同情况下,同样一张图片,需要不一样大小/背景/尺寸显示. 例子: dam下面有一张940 x 300 的图片: http://localhost:4502/content/dam/geometrixx/shapes/W07.jpg 如果想要以200 x 100的像素显示, 就可以在OSGI 阅读全文
posted @ 2019-04-11 14:58 亚历山大88 阅读(407) 评论(0) 推荐(0) 编辑