随笔分类 -  Excel / VBA-Excel

摘要:VBA常用教程网站 (个收收集) 易百教程 https://www.yiibai.com/vba 阅读全文
posted @ 2024-05-13 09:44 冬至小孩 阅读(111) 评论(0) 推荐(0)
摘要:1、If…Then语句 Sub SayHello1() If Time < 0.5 Then MsgBox "早上好!" If Time >= 0.5 Then MsgBox "下午好!"End Sub Sub SayHello2() If Time < 0.5 Then MsgBox "早上好!" 阅读全文
posted @ 2023-12-06 14:50 冬至小孩 阅读(99) 评论(0) 推荐(0)
摘要:1)数组创建A类:动态数组Dim arr () 创建一个动态变量数组,不受长度/数据类型受制Dim arr () as string 创建一个动态变量数组,不受长度/数据类型受制B类:静态数组Dim arr(5) as string 创建一个一维数组,下标从0开始,最大下标值为5Dim arr(3, 阅读全文
posted @ 2023-12-06 14:48 冬至小孩 阅读(238) 评论(0) 推荐(0)