在VB中, 怎么将几个text里面的内容导入到excel表格中。
在excel中,要放在不同的行与列中,如A1是name,A2是text1.text中的内容B1是性别,B2是text2.text中的内容、、、、、、谢谢!!...
在excel中, 要放在不同的行与列中,
如A1是name, A2是text1.text中的内容
B1是性别,B2是text2.text中的内容
、、、、、、
谢谢!! 展开
如A1是name, A2是text1.text中的内容
B1是性别,B2是text2.text中的内容
、、、、、、
谢谢!! 展开
3个回答
展开全部
以下代码可实现要求:
Dim app As New Excel.Application'定义app为Excel应用程序
Dim book As Excel.Workbook'定义book为的工作簿
Dim sheet As Excel.Worksheet’定义sheet为的工作表
Private Sub Command1_Click()'点击command1按钮实现导入
Set book = app.Workbooks.Add'新建book
Set sheet = book.Sheets(1)'新建sheets(1)
sheet.Range("A1").Value = Text1.Text'sheets(1)中A1赋值为text1内容
sheet.Range("B1").Value = Text2.Text'sheets(1)中B1赋值为text2内容
End Sub
Dim app As New Excel.Application'定义app为Excel应用程序
Dim book As Excel.Workbook'定义book为的工作簿
Dim sheet As Excel.Worksheet’定义sheet为的工作表
Private Sub Command1_Click()'点击command1按钮实现导入
Set book = app.Workbooks.Add'新建book
Set sheet = book.Sheets(1)'新建sheets(1)
sheet.Range("A1").Value = Text1.Text'sheets(1)中A1赋值为text1内容
sheet.Range("B1").Value = Text2.Text'sheets(1)中B1赋值为text2内容
End Sub
展开全部
如果几个文本文件之间有对应关系,那么要把所有文件中的内容分别读到几个数组中,
在EXCEL里先以某个字段(如姓名)输出第一列,再到其他数组中去筛选对应的记录,再输出至第二列
如此反复
在EXCEL里先以某个字段(如姓名)输出第一列,再到其他数组中去筛选对应的记录,再输出至第二列
如此反复
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Dim app As New Excel.Application
Dim book As Excel.Workbook
Dim sheet As Excel.Worksheet
Private Sub Command1_Click()
Set book = app.Workbooks.Add
Set sheet = book.Sheets(1)
sheet.Range("A1").Value = Text1.Text
sheet.Range("B1").Value = Text2.Text
sheet.Range("C1").Value = Text3.Text
End Sub
Dim book As Excel.Workbook
Dim sheet As Excel.Worksheet
Private Sub Command1_Click()
Set book = app.Workbooks.Add
Set sheet = book.Sheets(1)
sheet.Range("A1").Value = Text1.Text
sheet.Range("B1").Value = Text2.Text
sheet.Range("C1").Value = Text3.Text
End Sub
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询