EXCEL中如何实现同一单元格中输入字母输出对应汉字(指定内容)。 例:A1中输入“BG”,回车后A1显示“办公
当前主要想在EXCEL表格实现的构想是:在一个单元格中输入指定的字母(主要是指定汉字的首个字母),在回车后相应字母自动更新为指定汉字(有点类似于“自动更新”的功能)。且希...
当前主要想在EXCEL表格实现的构想是:
在一个单元格中输入指定的字母(主要是指定汉字的首个字母),在回车后相应字母自动更新为指定汉字(有点类似于“自动更新”的功能)。且希望是指定的列才执行此功能。望高手予以提携指导,静候回音! 展开
在一个单元格中输入指定的字母(主要是指定汉字的首个字母),在回车后相应字母自动更新为指定汉字(有点类似于“自动更新”的功能)。且希望是指定的列才执行此功能。望高手予以提携指导,静候回音! 展开
4个回答
展开全部
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then '只有当在A列输入数据时改变
Select Case Target.Text
Case "BG"
Target = "办公"
Case "JT"
Target = "交通"
End Select
End If
End Sub
---
工具-宏-编辑VB,复制程序到右侧即可.可以根据需要改变列,或增加改变的字母
If Target.Column = 1 Then '只有当在A列输入数据时改变
Select Case Target.Text
Case "BG"
Target = "办公"
Case "JT"
Target = "交通"
End Select
End If
End Sub
---
工具-宏-编辑VB,复制程序到右侧即可.可以根据需要改变列,或增加改变的字母
展开全部
如果只对单个这样的要求是好做,但有很多,有点难度,当然也是可以做的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count = 1 Then
If Target.Column = 5 Then '指定第5列
If Target = "BG" Then Target = "办公"
if target ="xx" then target ="xxx"
if target ="xx" then target ="xxx"
if target ="xx" then target ="xxx"
if target ="xx" then target ="xxx"
...
End If
End If
End Sub
If Target.Count = 1 Then
If Target.Column = 5 Then '指定第5列
If Target = "BG" Then Target = "办公"
if target ="xx" then target ="xxx"
if target ="xx" then target ="xxx"
if target ="xx" then target ="xxx"
if target ="xx" then target ="xxx"
...
End If
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
excel有这个功能么?
搜狗输入法倒是可以。
搜狗输入法倒是可以。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |