1. 2003版的excel
Excel表打印出来没有表格,2003那是因为我们没有设置边框呀,我们在新建一个Excel工作表的时候会出现无数的小方块,这个小方块只是让我们显示让我们便于操作的编辑的,它并不是真实存在的,如果我们要想让它所有出现一个表格的话,我们就必须对这些单元格全部把4周加上边框。
2. 2003版的excel表格密码取消
1,可以看到了这里要按ctrl +alt+del才能解除。
2,这里在输入密码才解除锁定。
3,首先打开开始-所有程序-管理工具-在单击本地安全策略。
4,这里在选择本地策略,安全选项。
5,这里在选择交互式登录:不需要CTRL+ALT+DEL已禁用。
6,这里在选择已启用。
7,启用之后在运行里输入gudeate更新策略,也可以重新启动电脑。
3. 2003版的excel 怎么升级到最新版本
1.可以找个有高版本的电脑,另存为低版本的,再发给你自己,就可以打开了。
2.安装兼容包, Office套件里,2007版以前为旧版,2007版以后为新版。 比如Excel,旧版为xls格式,新版为xlsx格式。 要用旧版应用打开新版文件,只需要在网上下载相应的兼容补丁安装后即可实现
3.下载安装最新版本,重新下载安装 Office 2007或Office2010。
4. 2003版的excel表格怎么截图
假设客户档如图示
里面资料是模拟的
1、个人档表格的B3单元格输入公式:
=HLOOKUP(A3,'客户档(总)'!$A$1:$L$200,$E$2+1,FALSE),回车
见图二
2、复制B3单元格
选中要显示相关资料的其他单元格
见图三
在选择区点击右键>粘贴公式(fx)
3、结果见图四
4、这样就可以直接在编号单元格:e2,直接输入编号值
会自动显示该编号的个人资料
如图
5. 2003版的excel表格
excel表格2003版设置密码的步骤 首先打开2003版本的excel表格,需要设置excel的密码时可以点击顶部主菜单中的“工具”菜单。
点击工具菜单之后,会弹出一列的功能菜单,找到“选项”菜单并点击进入设置。
有时候我们点击选项菜单中,也会弹出一个未安装校对工具的提示,不用管它,可以点击关闭按钮或者确定按钮。
在弹出来的选项窗口中,找到右上角的“安全性”选项菜单,并点击这个按钮。
来到excel表格的加密设置,在打开权限密码右侧的输入框中输入提前想好的密码,然后点击确定。
点击确定之后,还会弹出确认密码的提示窗口,这时候只需要再次输入跟第一次一样的密码,然后再次点击确定就可以了。
当然设置完毕之后,可以点击顶部工具栏中的保存,对这次的设置进行保存,然后关闭表格。
然后再次打开这个excel表格的时候,就会发现打开这个表格是需要输入正确密码才可以打开,证明这次excel表格已经成功设置密码了
6. 2003版的excel表格怎么筛选
用数据筛选的功能可以删除excel2003表格中的重复数据。 工具/原料 Microsoft Office Excel 2003 步骤/方法
1.看下面这个例子,为了看得清楚,把重复记录标出来了;
2.选中所有记录,并且要把标题一起选中;
3.数据菜单-> 筛选 -> 高级筛选;
4.弹出一个高级筛选对话框,可以选在原有区域显示筛选结果,这样就会在原来的数据位置把重复记录删除;
5.然后点复制到右边的彩色小按钮;
6.选择复制到的位置,选中一个单元格就行,这里把它复制到原来表格下面一点位置。然后按那个彩色小按钮;
7.把选择不重复的记录勾上,然后确定即可。
7. 2003版的excel表格怎么设置密码
新建一个EXCEL工作表,而后点击另存为,讲表格保存为启用宏的工作表
一次点击开发工具---录制新宏,在弹出的对话框内修改宏名称而后确定
依次点击开发工具----停止录制宏,宏录制完成
依次点击开发工具,---宏----在弹出的对话框找到我们刚才录制的宏名称而后进入VBA界面
在VBA界面,全选里面的代码,而后删除,讲里面的代码全部删除完
代码复制到VBA编辑窗口内
Public Sub AllInternalPasswords()
' Breaks worksheet and workbook structure passwords. Bob McCormick
' probably originator of base code algorithm modified for coverage
' of workbook structure / windows passwords and for multiple passwords
'
' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
' Modified 2003-Apr-04 by JEM: All msgs to constants, and
' eliminate one Exit Sub (Version 1.1.1)
' Reveals hashed passwords NOT original passwords
Const DBLSPACE As String = vbNewLine & vbNewLine
Const AUTHORS As String = DBLSPACE & vbNewLine & _
"Adapted from Bob McCormick base code by" & _
"Norman Harker and JE McGimpsey"
Const HEADER As String = "AllInternalPasswords User Message"
Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
Const REPBACK As String = DBLSPACE & "Please report failure " & _
"to the microsoft.public.excel.programming newsgroup."
Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
"now be free of all password protection, so make sure you:" & _
DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
DBLSPACE & "Also, remember that the password was " & _
"put there for a reason. Don't stuff up crucial formulas " & _
"or data." & DBLSPACE & "Access and use of some data " & _
"may be an offense. If in doubt, don't."
Const MSGNOPWORDS1 As String = "There were no passwords on " & _
"sheets, or workbook structure or windows." & AUTHORS & VERSION
Const MSGNOPWORDS2 As String = "There was no protection to " & _
"workbook structure or windows." & DBLSPACE & _
"Proceeding to unprotect sheets." & AUTHORS & VERSION
Const MSGTAKETIME As String = "After pressing OK button this " & _
"will take some time." & DBLSPACE & "Amount of time " & _
"depends on how many different passwords, the " & _
"passwords, and your computer's specification." & DBLSPACE & _
"Just be patient! Make me a coffee!" & AUTHORS & VERSION
Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
"Structure or Windows Password set." & DBLSPACE & _
"The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
"Note it down for potential future use in other workbooks by " & _
"the same person who set this password." & DBLSPACE & _
"Now to check and clear other passwords." & AUTHORS & VERSION
Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
"password set." & DBLSPACE & "The password found was: " & _
DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
"future use in other workbooks by same person who " & _
"set this password." & DBLSPACE & "Now to check and clear " & _
"other passwords." & AUTHORS & VERSION
Const MSGONLYONE As String = "Only structure / windows " & _
"protected with the password that was just found." & _
ALLCLEAR & AUTHORS & VERSION & REPBACK
Dim w1 As Worksheet, w2 As Worksheet
Dim i As Integer, j As Integer, k As Integer, l As Integer
Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
Dim PWord1 As String
Dim ShTag As Boolean, WinTag As Boolean
Application.ScreenUpdating = False
With ActiveWorkbook
WinTag = .ProtectStructure Or .ProtectWindows
End With
ShTag = False
For Each w1 In Worksheets
ShTag = ShTag Or w1.ProtectContents
Next w1
If Not ShTag And Not WinTag Then
MsgBox MSGNOPWORDS1, vbInformation, HEADER
Exit Sub
End If
MsgBox MSGTAKETIME, vbInformation, HEADER
If Not WinTag Then
MsgBox MSGNOPWORDS2, vbInformation, HEADER
Else
On Error Resume Next
Do 'dummy do loop
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
With ActiveWorkbook
.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
If .ProtectStructure = False And _
.ProtectWindows = False Then
PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
MsgBox Application.Substitute(MSGPWORDFOUND1, _
"$$", PWord1), vbInformation, HEADER
Exit Do 'Bypass all for...nexts
End If
End With
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
Loop Until True
On Error GoTo 0
End If
If WinTag And Not ShTag Then
MsgBox MSGONLYONE, vbInformation, HEADER
Exit Sub
End If
On Error Resume Next
For Each w1 In Worksheets
'Attempt clearance with PWord1
w1.Unprotect PWord1
Next w1
On Error GoTo 0
ShTag = False
For Each w1 In Worksheets
'Checks for all clear ShTag triggered to 1 if not.
ShTag = ShTag Or w1.ProtectContents
Next w1
If ShTag Then
For Each w1 In Worksheets
With w1
If .ProtectContents Then
On Error Resume Next
Do 'Dummy do loop
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
.Unprotect Chr(i) & Chr(j) & Chr(k) & _
Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
If Not .ProtectContents Then
PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
MsgBox Application.Substitute(MSGPWORDFOUND2, _
"$$", PWord1), vbInformation, HEADER
'leverage finding Pword by trying on other sheets
For Each w2 In Worksheets
w2.Unprotect PWord1
Next w2
Exit Do 'Bypass all for...nexts
End If
Next: Next: Next: Next: Next: Next
Next: Next: Next: Next: Next: Next
Loop Until True
On Error GoTo 0
End If
End With
Next w1
End If
MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
End Sub
点击保存
点击开发工具,宏,找到我们刚才录制的宏,点击执行宏
而后,在弹出的所有对话框上,都点击确定,都确定,1分钟后,就可以编辑了
- 相关评论
- 我要评论
-