Excel导出函数

发布 2022-06-29 12:47:28 阅读 4868

sub exporttoexcel

= "application/"

"content-disposition", attachment;filename="

call writetabledata

end sub

excel导入数据库。

dim filename

filename=""取得文件名,来自项目经理的指定,路径固定在某个虚拟路径中。

dim conn, rs

set conn=createobject(""

"driver=;"

driverid=790;"

dbq=" filename

defaultdir=g:\"

set rs=createobject(""

"select * from [sheet1$]"conn, 2, 2

if then

"excel表中无纪录"

elseset conndb =

dbpath =

dbpath

"driver=;dbq=" dbpath

set rsdb =

sqldb="select * from excel"

sqldb,conndb,1,3

do while not '利用循环读出数据。

rsdb("filename")=rs(0)

rsdb("id1")=rs(1)

rsdb("id2")=rs(2)

rsdb("id3")=rs(3)

rsdb("id4")=rs(4)

loop filename

end if

if then

"数据库中无记录"

elsedo while not

rsdb("filename")&

rsdb("id1")&

rsdb("id2")&

rsdb("id3")&

rsdb("id4")&

loopend if

set rs=nothing

set conn=nothing

最近为了方便前台对**留言信息的记录和保存,于是就用asp程序编写了一个把access数据导成为excel格式的数据。开始的时候也不知道怎么编写程序,在网上找了很多都没有完全解决,于是对一些程序进行修改,最后还是完成了,现在拿来和大家分享一下!

'连接数据库。

dim rs,sql,filename,fs,myfile,x

set fs =

--假设你想让生成的excel文件做如下的存放

filename =

filename

--如果原来的excel文件存在的话删除它

if then

end if

--创建excel文件。

set myfile =

set rs =

--从数据库中把你想放到excel中的数据查出来

sql = select user as 姓名,tel as **,time1 as 留言时间,adr as e_mail,qq as q_q from message where hit=0 order by id desc "

sql,conn,1,1

if and then

elsedim strline,responsestr

strline=""

for each x in

strline = strline & chr(9)

next--将表的列名先写入excel

strline

do while not

strline=""

for each x in

strline = strline & chr(9)

next--将表的数据写入excel

strline

loopend if

set rs = nothing

希望对大家有帮助!

MVC3导出Excel

所用环境信息 vs2010 mvc3 linq npoihelper帮助类。public class npoihelper datatable导出到excel文件。源datatable 表头文本。保存位置。public static void export datatabledtsource,str...

excel所有excel函数

用途 返回一组数据与其平均值的绝对偏差的平均值,该函数可以评测数据 例如学生的某科考试成绩 的离散度。语法 edev number1,number2,参数 number1 number2 是用来计算绝对偏差平均值的一组参数,其个数可以在1 30个之间。实例 如果a1 79 a2 62 a3 45 a...

EXCEL函数教程 EXCEL日期函数和时间函数大全

显示当前年份函数 year now 显示当前月份函数 month now 显示当前日期函数 day now 显示当前星期函数 text now aaaa 显示当前准确时间 text now hh mm ss 显示当前年月日 today 显示当前年月日和时间 now 使用方法 直接在某单元格输入以上函...