码迷,mamicode.com
首页 >  
搜索关键字:cells    ( 1822个结果
do until..loop
Sub util实例()Dim rs%rs = 2Do Until Cells(rs, 2) = ""If Cells(rs, 2) >= 90 Then Cells(rs, 3) = "good"rs = rs + 1LoopEnd Sub
分类:其他好文   时间:2015-09-15 16:13:46    阅读次数:138
OpenRefine导入CSV文件,数据清理后导出JSON格式
第一步:选择要转换的CSV文件。第二步:选择以逗号分割,并创建项目。第三步:编辑,去掉特殊字符Edit Cells > Transform...第四步:导出文件,选择“Templating”菜单项。第五步:预览,并导出。
分类:Web程序   时间:2015-09-11 14:08:03    阅读次数:217
【Vegas原创】EXCEL光标所在的行自动变色
方法: 1,excel中,按Alt+F11,打开VBA编辑界面,双击需要改的工作表名称,将下面代码粘贴到右边框中,即可。 2,代码: Private Sub Worksheet_SelectionChange(ByVal Target As Range) Cells.Interior.ColorIn...
分类:其他好文   时间:2015-09-10 16:06:28    阅读次数:238
empty-cells:show
隐藏表格中空单元格上的边框和背景:table { border-collapse:separate; empty-cells:hide; }定义和用法empty-cells 属性设置是否显示表格中的空单元格(仅用于“分离边框”模式)。注释:某些版本的 IE 浏览器不支持此属性。说明该属性定义...
分类:其他好文   时间:2015-09-10 09:29:53    阅读次数:155
leetcode笔记:Valid Sudoku
一.题目描述Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules: http://sudoku.com.au/TheRules.aspx . The Sudoku board could be partially filled, where empty cells are filled with the...
分类:其他好文   时间:2015-09-09 21:32:21    阅读次数:296
c#datagridview
//保证显示当前活动单元格this.Invoke(new Action(() =>{ dataGridView1.CurrentCell = dataGridView1.Rows[index].Cells[0]; }));//添加新行index=dataGridView1.Rows.Add();da...
分类:Windows程序   时间:2015-09-09 21:10:52    阅读次数:223
BFC
先看一下英文解释:Floats, absolutely positioned elements, block containers (such as inline-blocks, table-cells, and table-captions) that are not block boxes, a...
分类:其他好文   时间:2015-09-09 13:01:24    阅读次数:125
干细胞
Pluripotent, embryonic stem cells originate as inner cell mass (ICM) cells within a blastocyst. These stem cells can become any tissue in the body, ex...
分类:其他好文   时间:2015-09-08 12:03:02    阅读次数:279
VBA 使用区域和当前区域
VBA 选择使用区域Sub Select_UsedRange()ActiveSheet.Range(ActiveSheet.Cells(1, 1), ActiveSheet.UsedRange).SelectEnd Subrc = .range("a1").CurrentRegion.Rows.Co...
分类:编程语言   时间:2015-09-06 12:43:18    阅读次数:1579
Handsontable Read-only cells
一,列只读js代码:var container1 = document.getElementById('example1'),hot1;hot1 = new Handsontable(container1, {data: getCarData(),minSpareRows: 1,colHeaders...
分类:其他好文   时间:2015-09-06 12:21:59    阅读次数:125
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!