在Excel列中添加单词围绕一个单词添加
目前,单元格中的文字看起来像
更新s set group_name = b其中group_id = c;
为此使用的公式 -
="UPDATE "&$N$1&" SET "&$N$2&" = "&TEXT($B2,"MM/DD/YY")&"WHERE "&$N$3&" = "&$E2&";"
我想在这里添加b周围的单个引号,以便看起来像这样 -
更新set group_name ='b'其中group_id = c;
如何通过调整上述公式来实现这一目标?
Currently the text in a cell looks like this-
UPDATE A SET group_name = B WHERE group_ID = C;
Formula used for this is-
="UPDATE "&$N$1&" SET "&$N$2&" = "&TEXT($B2,"MM/DD/YY")&"WHERE "&$N$3&" = "&$E2&";"
I want to add single quotes around B here so that it looks like this-
UPDATE A SET group_name = 'B' WHERE group_ID = C;
How do I achieve this by tweaking the above mentioned formula?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如这里评论的几种方法。所有以下公式都应该为您服务。
As commented few methods here. All following formulas should work for you.