excel用vb自动替换内容

在A列输入"1"自动替换为"苹果",输入"2"自动替换为"草莓",输入"3"自动替换为"菠萝"……在B列输入"1"自动替换为"现金",输入"2"自动替换为"转帐",输入"... 在A列输入"1" 自动替换为"苹果",输入"2" 自动替换为"草莓",输入"3" 自动替换为"菠萝"……
在B列输入"1" 自动替换为"现金",输入"2" 自动替换为"转帐",输入"3" 自动替换为"微信支付"……
在C列输入"1" 自动替换为"东城",输入"2" 自动替换为"西城",输入"3" 自动替换为"南城"……
展开
 我来答
cfzzj007
2017-10-09 · TA获得超过5365个赞
知道大有可为答主
回答量:7931
采纳率:78%
帮助的人:1563万
展开全部
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Value <> "" Then
        Application.EnableEvents = False
        Dim L1, L2, L3
        L1 = Array("苹果", "草莓", "菠萝")
        L2 = Array("现金", "转账", "微信支付")
        L3 = Array("东城", "西城", "南城")
        If Target.Column = 1 Then
            Target.Value = L1(Target.Value - 1)
        End If
        If Target.Column = 2 Then
            Target.Value = L2(Target.Value - 1)
        End If
        If Target.Column = 3 Then
            Target.Value = L3(Target.Value - 1)
        End If
        Application.EnableEvents = True
    End If
End Sub
姓王的wy451

2017-10-09 · TA获得超过48.3万个赞
知道大有可为答主
回答量:8万
采纳率:78%
帮助的人:8953万
展开全部
这个只能用VBA来处理
追问
可以,具体怎么操作呢?
追答
你如果不会VBA,给你说不清楚的。请给一个邮箱,我发示例文件给你。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式