博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VBA 打开excel
阅读量:6254 次
发布时间:2019-06-22

本文共 1198 字,大约阅读时间需要 3 分钟。

Sub openExcelFile(ByVal filePath$)

Set xls = CreateObject("Excel.Application")
Set xlbook = xls.Workbooks.Open(filePath)
'xls.Visible = True
Set xlsheet = xlbook.Worksheets(1)
Application.ScreenUpdating = False
    With xlsheet
        MsgBox .[a2]
    End With
    
 Application.ScreenUpdating = True
xlbook.Close (True)
    xls.Quit
    
    Set xlsheet = Nothing
    Set xlbook = Nothing
    Set xls = Nothing
    
End Sub

 

Sub getSheetName()
For Each sht In ThisWorkbook.Sheets
    With sht
        If .Cells(2, 1).Value <> "" Then .Cells(2, 1).Interior.ColorIndex = 45
        
    
    End With
Next
End Sub
Sub getSheetName()
Dim arr
Dim c As Range
For Each sht In ThisWorkbook.Sheets
 If sht.Name = "Sheet2" Then
    With sht
     
        Set St = Worksheets("sheet1")
           'MsgBox St.[a1].End(2).Column
        For i = 1 To St.[a1].End(2).Column 'St.[a65536].End(3).Row
           If St.Cells(1, i).Value = .Name Then
           
            
                For ii = 1 To .[a65536].End(3).Row
                    'If .Cells(ii, 1).Value Then
                    
                    Set c = St.Range(St.Cells(1, i), St.Cells(St.Cells(65536, i).End(3).Row, i)).Find(.Cells(ii, 1), , , 1)
                    If Not c Is Nothing Then
                        MsgBox "a"
                    End If
                Next
                
                Exit For
           End If
            'If .Cells(2, 1).Value <> "" Then .Cells(2, 1).Interior.ColorIndex = 45
        
        Next
    End With
 End If
Next
End Sub

转载于:https://www.cnblogs.com/yuzhengdong/p/3315984.html

你可能感兴趣的文章
PCI-e介面的SSD火了,PC OEM厂商为啥这么青睐?
查看>>
卡塔尔半岛电视台称遭黑客全面攻击 未透露攻击来源
查看>>
2017年,美国科技巨头们面临那些“当头一棒”
查看>>
D1net阅闻:中国广电:两期互联互通工程 计划投千亿
查看>>
品高公开课 | 基于Docker容器的微服务架构实践
查看>>
公交WiFi再燃烧钱大战
查看>>
EMC联邦公布最新超融合型设备
查看>>
web测试20种界测试思路
查看>>
IPv6太落后了:中国加速服务器援建
查看>>
《Web测试囧事》——1.2 索引值计算错误使资源缩略图显示和大图展现不一致...
查看>>
智能社会到来?微软建设实时工作环境搜索引擎
查看>>
低带宽DDoS攻击可瘫痪防火墙
查看>>
不论是大数据还是小数据,有用的就是好数据!
查看>>
如何利用DevOps最大限度降低云应用风险
查看>>
Java中关键字volatile的作用
查看>>
阿里云总裁胡晓明:为世界带去中国云计算大数据服务
查看>>
当实验室遇上物联网研究人员期望在工作与生活中找到平衡
查看>>
陌陌高管解读财报:直播业务有近万名月付费5000以上用户
查看>>
最令人厌恶的行车八大陋习,你中了几条?
查看>>
改进型组织-过程改进组织最佳实践
查看>>