由买买提看人间百态

topics

全部话题 - 话题: excel
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
P******0
发帖数: 9787
1
【 以下文字转载自 WaterWorld 讨论区 】
发信人: vincentsjtu (Vincent沈游游), 信区: WaterWorld
标 题: 问个白痴问题,关于excel显示数字的问题
发信站: BBS 未名空间站 (Tue May 1 18:39:30 2012, 美东)
问个白痴问题,关于excel显示数字的问题
当数字是10位数的时候,正常显示
当数字超过10位数的时候,excel的框框里面就省略显示了,能让这个省略变成全部显
示吗?
谢谢了
q*******n
发帖数: 360
2
实在是不好意思,这么个问题老是麻烦大家,都怪自己没好好学习:(
我今天一边翻书一边学着做,总算做出来了一个所谓的宏:内层do-loop循环可以运行
,可是外层的do-loop循环只走了一步,就不循环了(根据表格里的数据看,外层循环
是应该走很多步的)。麻烦大家看看是怎么回事?先谢谢了。
-------------------------
Sub ShuJuChuanShu()
注:我觉得大家的建议都很有道理,一组7800个数值,只靠手输入,真的累死人了。我
都已经想办法把它们导进excel表格里了。
Dim CodeR As String
Dim CodeS As String
i = 9 注:数据在excel中的起始位置
j = 2 注:数据在excel中的起始位置
Do
Do
CodeR = Sheet3.Cells(i, 1) 注:表三种第一列的温度值。
CodeS = Sheet2.Cells(j, 1) 注:表二中第一列的温度值。

If CodeS = CodeR Then
Sheet3.... 阅读全帖
D*********e
发帖数: 646
3
DDE?在mac上应该不会工作。mac上搞excel是自找麻烦。可以试试用其他语言读了再写
到excel。
p*****e
发帖数: 58
4
Are you familiar with Excel object model? You can write a
VBA macro to automatically load data from a file written by
your CGI. Data items can be put into cells using VBA.
Another way is to use a ASP page, instead of Perl CGI, to
read form data. In the ASP you can create an Excel worksheet
object and put data in the sheet. I don't think it's a good
idea to use perl to talk to Excel directly.
f********1
发帖数: 392
5
【 以下文字转载自 Apple 讨论区 】
发信人: fenghuo171 (幻影如魅), 信区: Apple
标 题: [求助] excel文件崩溃了 (转载)
发信站: BBS 未名空间站 (Sun Oct 23 02:13:32 2016, 美东)
发信人: fenghuo171 (幻影如魅), 信区: Software
标 题: [求助] excel文件崩溃了
发信站: BBS 未名空间站 (Sun Oct 23 02:00:53 2016, 美东)
放在google drive里面,经常使用经常更新的一个文件,昨天关闭后再打开就出现:

Excel cannot open this file.
The file format or file extension is not valid. Verify that the file has not
been corrupted and that the file extension matches the format of the file.

试了好多方法都没法恢复,请牛人指点下,先谢谢了
f**d
发帖数: 1952
6
来自主题: Database版 - [转载] 请教一个Excel的小问题
【 以下文字转载自 Software 讨论区,原文如下 】
发信人: fred (寻车中), 信区: Software
标 题: 请教一个Excel的小问题
发信站: The unknown SPACE (Fri Dec 27 17:53:25 2002) WWW-POST
在Excel里,如何将第m行n列的数据自动转到第n行m列? 换句话说就是,原来竖着排的表
,现在想横着排,Excel能自动完成这种转换吗?
谢谢!
g****m
发帖数: 4
7
来自主题: Database版 - 问个excel的问题???
我的试验数据转化成tex格式,有2列,中间有逗号隔开。现在我要导入到excel中,ope
n--->找到要打开的tex文件-->(默认)下一步--->分隔符号选择逗号--->完成。为什么
我在学校office用excel时候这样导入数据很正常,但是我把数据传到家里的机子上,同
样操作,在excel中却自动隔一行才一个数据,就是说,每两行之间比有一行空白,是什
么原因? 是不是notepad哪儿的设置不同?
谢了?
n****n
发帖数: 59
8
来自主题: Database版 - how to keep data integrity in excel
我现在的工作中要生成很多报表,后台用数据库没什么问题,但前台只会用excel。现
在的做法是开发
很多excel模板,用宏下载数据,再做各种计算,最后还是用宏拷贝数据,格式,生成最
终报表。
现在问题是模板经常需要改动,但excel又不像数据库能很好保持数据正确完整,经常
是改了一个地方
(公式或格式),意外地影响到其他地方,或者好几处地方要同步修改(不同的
worksheets,甚至不
同workbooks)。维护这些模板本身很麻烦,很容易产生bugs。
不知大家有没有什么好经验。或者有什么第三方软件帮助检查。
w*r
发帖数: 2421
9
来自主题: Database版 - advanced skills in excel?
also pivot table... very important skill.
I once wrote a package using apache excel writer to populate data in a excel
file (with vba code template) and publish report to user. User only has to
open the web page input a couple parameters. it will generate excel file
with macros automatically build formatting, charts, pivot tables
automatically once he/she opens it.
w*******7
发帖数: 188
10
来自主题: DotNet版 - 请教一个问题: 关于excel的
LZ 可以参考这个网站 http://archive.msdn.microsoft.com/mschart
上面有aps.net和winForm的sample, 其中有如何“binging to Excel Files"
for example:
using System.Web.UI.DataVisualization.Charting;
using System.Data;
using System.Data.OleDb;
...
private void Page_Load(object sender, System.EventArgs e)
{
// resolve the address to the Excel file
string fileNameString = this.MapPath(".");
fileNameString += "..\\..\\..\\data\\ExcelData.xls";
// Create connection object by using the preceding connection stri... 阅读全帖
w*******7
发帖数: 188
11
来自主题: DotNet版 - 请教一个问题: 关于excel的
LZ 可以参考这个网站 http://archive.msdn.microsoft.com/mschart
上面有aps.net和winForm的sample, 其中有如何“binging to Excel Files"
for example:
using System.Web.UI.DataVisualization.Charting;
using System.Data;
using System.Data.OleDb;
...
private void Page_Load(object sender, System.EventArgs e)
{
// resolve the address to the Excel file
string fileNameString = this.MapPath(".");
fileNameString += "..\\..\\..\\data\\ExcelData.xls";
// Create connection object by using the preceding connection stri... 阅读全帖
c*********e
发帖数: 16335
12
front end不需要excel file,直接就可以存到excel文件里了。
vb,excel是一家,非常容易的。

a**********y
发帖数: 930
13
Excel 97 memory use increased from 1GB to 4GB, but the real usage should
be higher, especially there is memory leak.
The best way to improve though, may not be memory or cup, it may be the
better programming in excel, just google for more efficient way of using
excel, you will see lots of articles
s*******l
发帖数: 35
14
来自主题: Internet版 - Question about Excel (转载)
【 以下文字转载自 Database 讨论区 】
发信人: stockgirl (好好读书), 信区: Database
标 题: Question about Excel
发信站: BBS 未名空间站 (Wed Jun 13 12:29:45 2007)
How can I make first row stationary while scrolling down a excel file?
I deal a lot with excel files (first row is title, from 2nd row down is lots
of data, and I wanna first row stay visible while scroll down the file to
see my data)
Thank you.
d**k
发帖数: 1223
15
我有个app,需要从excel里面读data。那些text什么的好像还好,不过excel里面有个
column存的是image, 而且好像还看不出来是什么type的image. 有人做过类似的从
excel里头读image然后再存数据库的吗?难道还是要直接读成binary? 这样读成binary
后,还能在web 上render吗?谢谢了。
y***i
发帖数: 11639
16
来自主题: Programming版 - Excel 的Autocorrect问题请教
【 以下文字转载自 Windows 讨论区 】
发信人: yuuli (听,...听), 信区: Windows
标 题: Excel 的Autocorrect问题请教
发信站: BBS 未名空间站 (Tue Jul 22 01:40:33 2008), 站内
在Excel里键入SEP15 (一个基因名字),Excel会认成日期,自作主张的改写成15-sep,
formula bar上还记成9/15/2008,把Autocorrect所有选项都turn off也不行.google未
查到解决办法,哪位大侠知道该怎么做?多谢!
n****n
发帖数: 59
17
来自主题: Programming版 - how to keep data integrity in excel
抱歉发在这个版上。只是觉得这里高手多,请大家谅解,版主高抬贵手。
我现在的工作中要生成很多报表,后台用数据库没什么问题,但前台只会用excel。现
在的做法是开发
很多excel模板,用宏下载数据,再做各种计算,最后还是用宏拷贝数据,格式,生成最
终报表。
现在问题是模板经常需要改动,但excel又不像数据库能很好保持数据正确完整,经常
是改了一个地方
(公式或格式),意外地影响到其他地方,或者好几处地方要同步修改(不同的
worksheets,甚至不
同workbooks)。维护这些模板本身很麻烦,很容易产生bugs。
不知大家有没有什么好经验。或者有什么第三方软件帮助检查。
p****r
发帖数: 165
18
来自主题: Programming版 - excel macro running slow
after run a macro in excel, if I rerun it, excel become extremely slow. I
have to close all my excel application and restart it. Then the speed come
back. Any suggestions?
only thing that I could think about is my macro creates about 20 workbooks..
p******r
发帖数: 122
19
现在有一些 excel xlsx 格式的数据要分析。
首先第一步是读入数据。先用了xlrd 读,但是读到计算机里的都是些 unicode 的
string, 我想要的是 raw string 从 excel 里。不知道有什么法子让xlrd 读raw
string到计算机里。如果能的话,这问题就解决了。但是在网上搜了一下,貌似不能。
问下诸位,到底能吗?如能,该怎样?
后来又用openpyxl,能读成raw string了。但是有一个问题,我的excel 的文件,前几
行都是一些header,和正式的要读的数据格式不同。我需要从某一行读起。用了一些方法
import openpyxl
file_name="xxx.xlsx"
wb = openpyxl.load_workbook(filename=file_name, use_iterators = True)
first_sheet = workbook.get_sheet_names()[0]
ws = workbook.get_sheet_by_name(first_sheet)
for index, row in enumera... 阅读全帖
G***G
发帖数: 16778
20
来自主题: Programming版 - excel里的命令找不到
excel里面有个宏 calc()里面的最后一行
Calculate
但是找不到任何关于这个命令的代码。
请问这是excel把它藏起来了吗?整个excel可以运行。
WB
发帖数: 170
21
【 以下文字转载自 Database 讨论区 】
发信人: WB (wb), 信区: Database
标 题: excel的数据如何导入到access/mssql?
发信站: BBS 未名空间站 (Thu May 31 06:44:49 2007), 转信
我用google的html导入到了excel,
数据比较规整,现在想要一步操作的方式把
excel选定的数据导入到access/sql的表格,是否可以。
比如导出到指定的access/mssql
偏偏excel2003没有导出。
excel2007有这个功能么
s*******l
发帖数: 35
22
来自主题: Software版 - Question about Excel (转载)
【 以下文字转载自 Database 讨论区 】
发信人: stockgirl (好好读书), 信区: Database
标 题: Question about Excel
发信站: BBS 未名空间站 (Wed Jun 13 12:29:45 2007)
How can I make first row stationary while scrolling down a excel file?
I deal a lot with excel files (first row is title, from 2nd row down is lots
of data, and I wanna first row stay visible while scroll down the file to
see my data)
Thank you.
h**o
发帖数: 548
23
来自主题: Software版 - Excel文件回错位吗?
我有一个excel的template文件,是别人作的, 包括”Raw date”, “Figure”, “
Table” 等项。其中 “Figure”, “Table”把”Raw date”中的信息用图表的形式
显示出来。我只要把自己的原始数据文件(myfile.txt) import到这个template 的文件
里去就行了。
问题是当我import我的文件名(myfile.txt)后,选“raw date”项, 我的数据可以正
确显示,格式也是正确的, 但选 “Figure”, 图画的乱七八糟的,选 “Table”,
表格里都是”#REF1”的字样。
请问是什么原因那?是不是那儿错位了?可是 “raw date”项, 我的数据可以正确显
示,格式也是正确的啊?template 本身应该没问题,被人用过 好多遍了。
附:
我打开文件的步骤是这样的:
打开template file,
选中template file 的“raw date”项,
到excel 的Data 菜单, 选:refresh data, 然后 excel 就要我输入我的文件名
myfile.txt, 然后我就应该
j***n
发帖数: 301
24
来自主题: Software版 - Re: 请教一个EXCEL快捷键 (转载)
有一个雪城excel比较软件
http://www.appinn.com/xuecheng-excel-compare/

【 以下文字转载自 Shanghai 讨论区 】
发信人: ORCabbage (OR白菜), 信区: Shanghai
标 题: Re: 请教一个EXCEL快捷键
发信站: BBS 未名空间站 (Fri Jan 18 19:11:36 2008)
大侠我也请教一个
比如说我有两份文件需要compare data
基本上是差不多的但是有一些不一样,比如说这儿多一行那儿少一行什么的
有什么快捷键可以让他自动找出所有不同的地方吗?
谢谢
R*******c
发帖数: 249
25
以前只是用excel输入数据,现在希望这样:excel表中的数据D(i)=B(i)+C(i);就是D列
第i个数据,希望由B列和C列的对应数据自动生成,怎么可以办到呢?
这个是不是就是excel的编程?如果希望学点这种东西,应该怎么办呢?有没有教这种
的书啊什么的呢?
问题比较弱,希望大侠们能够帮忙解惑啊,感激不尽!
s********e
发帖数: 136
26
来自主题: Software版 - excel 2007 打开DVD旧Excel文档问题
可以打开部分旧的Excel文档,但是有些却又打不开,不知道什么原因。可以看到DVD里
的Excel2003文件名,但是打不开文件。我试着拷贝这个文件到硬盘,却告诉我找不到
文件。请问这是Excel的问题还是操作系统的问题?我用的是Vista Business 版。
z*****l
发帖数: 275
27
之前安装的office 2007,现在安装了office 2010,但是excel的这个问题一直存在。
点击excel就会出现好多好多关于VB application的窗口,好多代码,还说什么要升级
到64位系统什么的,必须一个一个关掉这些窗口,才能来到excel的正常界面,每次都
这样,好烦,求助各位好心人。上google查了一下,貌似是宏丢失或者注册表的问题,
可是自己是菜鸟,又不太敢弄,所以请各位费心指教,不胜感激。
s**********i
发帖数: 711
28

there's a perl win32::OLE module can handle excel files.
you can open excel then save as text.
or you can use vba macro, just open excel files one by one then
save as text.
either way, should be fairly simple, but may take long time
to run. macro probably slower.
s*****r
发帖数: 59
29
来自主题: Windows版 - excel: can not find under specified dir.
in Excel, use VBA, call Application.FileSearch to locate all the file with .
csv,
but for new files under dir, excel could not find it, old file is ok, like
be there one day or so. It is strange, I am not sure it is system problem,
or excel problem and how to solve it? Thanks.
h*******s
发帖数: 24
30
我有一个比较大的程序原来用FORTRAN写的. 现在想借用Excel来做数据的输入和输出,
即让FORTRAN读入Excel里的用户输入数据,运算后再把数据输出到Excel里显示.
不知道谁有这方面的经验或者有什么推荐的参考书,敬请不吝赐教.
h**o
发帖数: 548
31
我有一个excel的template文件,是别人作的, 包括”Raw date”, “Figure”, “
Table” 等项。其中 “Figure”, “Table”把”Raw date”中的信息用图表的形式
显示出来。我只要把自己的原始数据文件(myfile.txt) import到这个template 的文件
里去就行了。
问题是当我import我的文件名(myfile.txt)后,选“raw date”项, 我的数据可以正
确显示,格式也是正确的, 但选 “Figure”, 图画的乱七八糟的,选 “Table”,
表格里都是”#REF1”的字样。
请问是什么原因那?是不是那儿错位了?可是 “raw date”项, 我的数据可以正确显
示,格式也是正确的啊?template 本身应该没问题,被人用过 好多遍了。
附:
我打开文件的步骤是这样的:
打开template file,
选中template file 的“raw date”项,
到excel 的Data 菜单, 选:refresh data, 然后 excel 就要我输入我的文件名
myfile.txt, 然后我就应该可
p*******y
发帖数: 133
32
【 以下文字转载自 Software 讨论区 】
发信人: pennyjudy (penny), 信区: Software
标 题: how to do weighted linear regression in Excel?
发信站: BBS 未名空间站 (Sat May 22 13:07:59 2010, 美东)
Hi
I am trying to create a excel sheet to do weighted linear regression. This
sheet is intended to be shared with other ppl as a template.
I used user defined function downloaded from http://www.adamslim.com/ModellingGuides/ModellingGuidesWLR.htm. However, when I copy the excel sheet to other drive or other computer, it always report
p****r
发帖数: 165
33
来自主题: Windows版 - excel slow
after run a macro in excel, if I rerun it, excel become extremely slow. I
have to close all my excel application and restart it. Then the speed come
back. Any suggestions?
only thing that I could think about is my macro creates about 20 workbooks..
...
u***a
发帖数: 52
34
I am very new to develop office(Excel 2010) applications/doc-level add-ins
by (C#) VSTO 5.0 in VS2013. If this is not a place to post this kind of
question, please tell me where I can post it before you vote it down. Thanks
!
After reading this https://msdn.microsoft.com/en-us/library/cc668197.aspx?f=
255&MSPPError=-2147217396 I still cannot figure out how to develop a VSTO
project in VS2013 because I need to migrate a VS2010 VSTO 4.0 project (
developed in VS2010) to VSTO 5.0 in VS2013. The ori... 阅读全帖
k*****c
发帖数: 6
35
The following are 2 vb code blocks, maybe helpful to you.
public sub ReadExcelFile
dim sTemp as string
Dim Range As Excel.Range
Set Range = Sheet.UsedRange
iCols = Range.Columns.Count
iRows = Range.Rows.Count

With Range.Cells
For i = 1 To iRows
For j = 1 To iCols
sTemp = .Item(i, j).Value
next j
next i
end sub
public sub SaveExcelFileAsText
Dim xl As Excel.Application
Dim Workbook As Excel.Workbook
Dim
l******9
发帖数: 579
36
I need to export XML to XML by EXCEL 2010 in Win 7. I import XML file to
EXCEL 2010, then I need to make some changes and then export the changed XML
files.
I got the problem:
"Cannot save or export XML data. The XML maps in this workbook are not
exportable."
My question is simialr as
excel: Cannot save or export xml data. The xml map in this workbook are not
exportable
But, only the reasons for the problem are given there, no solutions. I am
new to XML.
Thanks
l******9
发帖数: 579
37
I need to export XML to XML by EXCEL 2010 in Win 7. I import XML file to
EXCEL 2010, then I need to make some changes and then export the changed XML
files.
I got the problem:
"Cannot save or export XML data. The XML maps in this workbook are not
exportable."
My question is simialr as
excel: Cannot save or export xml data. The xml map in this workbook are not
exportable
But, only the reasons for the problem are given there, no solutions. I am
new to XML.
Thanks
P********8
发帖数: 12
38
如果你想加强你的竞争力,获得更多的hard skills, 欢迎到我们这里
看看。希望能对你有所帮助.
http://www.beitnet.com
这周日我们要开始SQL Server 2012课程.老师是有20来年经验的,任职于美国大的软件
公司的资深DBA.
课程预计8次课,每次3小时.学费600美元.没有工作的优惠100美元.
我们还将随课程赠送super Excel, SQL in Excel的视频培训课程.
学完这些你可以成为一个技术很强的数据分析师.
谢谢!
--------------------------------------
掌握基础SQL的人,可以作reporting, analytics,data analyst的工作.一个好的
data analyst也需要好的EXCEL SKILLS,比如会用V-LOOKUP,会PIVOT TABLE并能做出
很好看的图标,配以对各种TREND的说明.
所以在这个层面选择还是比较多的,一旦把你放在初级SQL ANALYST的职位上,经验会
很快积累.每天会遇到不同的数据处理问题,需要你加紧学习新的句法.一般一年以后
就可... 阅读全帖
l**********y
发帖数: 503
39
来自主题: Accounting版 - 能否请哪位前辈再上传下excel的书
现在看到很多公司都要求什么:a great knowledge of excel (e.g. v-lookups)is a
must.
我都不知道什么是v-lookup.请哪位前辈能否上传一本好的excel的书
还有有的公司说要掌握intermediate excel. 这是什么啊?
非常感谢!
c******a
发帖数: 211
40
来自主题: Accounting版 - 请教:会计常用excel skills
在interview时一般都不会问excel。我做tax时会用excel准备一些schedule,会用到
find, search (vlookup 有时不好用),还有许多formula, 如if,sumif, pivot
table, validation,,有时还写一些VBA为了提高速度和准确性。LZ真不用为interview
而去准备excel。公司会更感兴趣你是否用过tax 或accounting software.
h****r
发帖数: 15
41
各位童鞋们,我想学一些有关advanced level of excel, 但是Excel2003 和2007差很
大(2010的好象与2007差不多),我想请问哪一个version Excel用得最普遍,大家能
说一说各自公司用的EXCEL都是哪年的VERSION?谢了。
m********y
发帖数: 21909
42
来自主题: Accounting版 - 有偿求教excel
我用excel做表, 有好几个sheet,我现在需要在两个sheet之间加一个新表, 重新命
名为sheet4A(假如在sheet4和sheet5之间加个表), 怎么操作啊? 我都研究一个多小
时了。 谢谢。 我这个的excel是那种灰色的excel, 肯定不是excel2007以上版本。
不好意思, 办公室的,我也无权改进。
另外, 如果我打一张表格, preview是2页, 第一页是有表格的, 第二页什么也没有
, 怎么把第二页删掉啊, 我也设定了print area, 但还是有第二页。
谢谢大家的帮忙。 酬劳, 一个包子。
e***c
发帖数: 30
43
you can try to link access with excel, code the query in excel vba, then run
macros from excel.
e*******o
发帖数: 4654
44
re
做research的,整天excel来excel去,本身就是个笑话。
excel 是给搞应用的小白用的。
生物博士要有cs ms 或者至少 minor,否则就是停留在刀耕火种的时代。

了。
t*****3
发帖数: 878
45
【 以下文字转载自 Statistics 讨论区 】
发信人: temp123 (ttt), 信区: Statistics
标 题: 怎么让EXCEL不主动去0 啊????
发信站: BBS 未名空间站 (Mon Aug 20 23:34:25 2007)
EXCEL总是自做多情地把3。00写成3,怎么阻止它?
另外,只想保存小数点后4位,怎么让EXCEL这样做??
谢了
s*********i
发帖数: 1813
46
【 以下文字转载自 Quant 讨论区 】
发信人: spaceniuzai (question), 信区: Quant
标 题: 有人看过Principles of Finance with Excel吗?
发信站: BBS 未名空间站 (Thu Dec 13 12:59:17 2007)
我是学经济的,对finance了解的不多,但现在准备找个金融类的工作,想补一下这方
面的知识。听说很多金融机构日常工作都是用excel,而不是stata,SAS什么的,在
amazon上找到一本书Principles of Finance with Excel(http://www.amazon.com/gp/product/0195301501/ref=wl_it_dp?ie=UTF8&coliid=I3BAYZ7OMRN65D&colid=1VMMQFT5BNVJG)。review还不错,但不知道这样的东西准备投行的面试够不够。BTW,我做的比较偏理论,所以不会用c++, matlab什么的。多谢各位指点。
L******k
发帖数: 33825
47
NYC Partnership for Teacher Excellence
-New York University - The City University of New York - The New York City
Department of Education
Please join us at the
2009 NYC PARTNERSHIP FOR TEACHER EXCELLENCE EXPO
• New York University and The City University of New York, in
collaboration with the NYC Department of Education, will highlight promising
practices and sustainable models for preparing aspiring teachers through
the Partnership for Teacher Excellence during the past three years.
&#
l******9
发帖数: 579
48
I need to export XML to XML by EXCEL 2010 in Win 7. I import XML file to
EXCEL 2010, then I need to make some changes and then export the changed XML
files.
I got the problem:
"Cannot save or export XML data. The XML maps in this workbook are not
exportable."
My question is simialr as
excel: Cannot save or export xml data. The xml map in this workbook are not
exportable
But, only the reasons for the problem are given there, no solutions. I am
new to XML.
Thanks
p********a
发帖数: 5352
49
来自主题: Statistics版 - [合集] excel并行一问,急~~~
☆─────────────────────────────────────☆
mitbbs1988 (korena) 于 (Thu May 29 14:07:22 2008) 提到:
我用excel读入了一个txt file里的数据。这个file里有100个individuals,每个
individuals有200个variables,所以这个excel file应该有100个rows和200个columns
,但是因为原文件的格式问题,在读入的时候每个individual的200个值是被分为了三
行,所以我不得不manually把这三行通过cut,paste等操作并成一行,很费时。
excel里有没有什么操作可以直接把多行按照次序并成一行的?
谢谢
☆─────────────────────────────────────☆
tosi (我的名字叫/tu'zi:/) 于 (Thu May 29 15:46:37 2008) 提到:
Please provide a sample data file with a few individuals. Be su
a*****r
发帖数: 681
50
老板要用sas程序来直接output出来的数据到excel,而且是在一个excel file建立很多
个worksheet.分别命名,请问用什么语句来用sas命名excel的worksheet,而且建立多个
worksheet.如果不能用proc export的话。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)