由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Windows版 - 如何将文本中的数据导入到exel?
相关主题
what's wrong with this VBA Excel code?Excel 的问题
问个技术问题,500个xml文件Incorporate into一个exelEXcel VBA help
Re: [转载] 这里有没有excell高手啊,帮帮忙吧。excel VBA string process question
Re: 怎样在Excel里面做下拉菜单?如何用excel VBA求解median?
转两篇相关主题的文档(1)excel VBA: create dir, move files under that dir.
VB code for extracting SWF from DOC/XLShow to use global variable in excel VBA
Re: Q: VBA in Excel请教:如何找到或者删除excel中隐藏的表?
Re: 一个关于excel的问题。excel: can not find under specified dir.
相关话题的讨论汇总
话题: lcellcount话题: vstring话题: lcount话题: dim话题: 14
进入Windows版参与讨论
1 (共1页)
J**G
发帖数: 3310
1
文本中的数据是这样的
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
如果导入excel中,变成一个column
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
谢谢
w****g
发帖数: 597
2
你可以写个EXCEL VBA代码小程序,先split string,再把数据导入.见vba例子
设 A1 = 11 12 13 14 15
Sub SplitRowToColumn()
Dim vString As Variant
Dim lCount As Long
Dim lCellCount As Long
lCellCount = 3
vString = Split(Cells(1, 1).Value, " ") // split cell A1
For lCount = LBound(vSecond) To UBound(vSecond)
lCellCount = lCellCount + 1
ActiveSheet.Cells(lCellCount, 1).Value = vString(lCount)
Next
End Sub
results are :
11 12 13 14 15
11
12
13
14
15
1 (共1页)
进入Windows版参与讨论
相关主题
excel: can not find under specified dir.转两篇相关主题的文档(1)
Interfacing Microsoft Excel VBA with FORTRANVB code for extracting SWF from DOC/XLS
vba in excel: calculate ModeRe: Q: VBA in Excel
[合集] Access helpRe: 一个关于excel的问题。
what's wrong with this VBA Excel code?Excel 的问题
问个技术问题,500个xml文件Incorporate into一个exelEXcel VBA help
Re: [转载] 这里有没有excell高手啊,帮帮忙吧。excel VBA string process question
Re: 怎样在Excel里面做下拉菜单?如何用excel VBA求解median?
相关话题的讨论汇总
话题: lcellcount话题: vstring话题: lcount话题: dim话题: 14