gpt4 book ai didi

excel - 使用 VBA 删除单元格中的最后一个字符

转载 作者:行者123 更新时间:2023-12-04 22:16:17 24 4
gpt4 key购买 nike

我在单元格中有一个值,如下所示( Abc','def','hij', 'klm' ,)我需要将这些值作为参数传递到 SQL 查询中。为此,我需要在开头添加一个额外的 ' ,使其读作 'Abc' 并删除 m 之后的最后一个 '。
我努力了Right(C2,LEN(C2)-(LEN(C2)-1)))但上面是删除我所有的,
我只需要最后一个,被删除

最佳答案

试试下面的公式

=REPLACE(REPLACE(A1,1,2,"('"),LEN(REPLACE(A1,1,2,"('"))-2,2,"")
enter image description here

Edit: VBA Codes. If there is no space after first bracket then try below codes.

Sub sSQL()
Dim x As String, z As String

x = Range("A1")
z = "('" & Mid(x, 2, Len(x) - 3) & ")"
MsgBox z

End Sub

关于excel - 使用 VBA 删除单元格中的最后一个字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68844455/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com