gpt4 book ai didi

excel - 将字符串附加到 VBA 中的粗体字符串

转载 作者:行者123 更新时间:2023-12-04 21:12:52 29 4
gpt4 key购买 nike

我有一个包含文本“ Collar Lot # ”的单元格,我想在它的末尾附加一个非粗体的字符串。例如“ Collar Lot # 23456\34567\45678”。我在下面的代码尝试使整个字符串变粗,导致“ Collar Lot # 23456\34567\45678

With Workbooks(ThisWorkbook.name).Worksheets(1)
...
.Cells(7, 5).value = "Collar Lot # " & "23456\34567\45678"
End With

我如何确保“23456\34567\45678”不是粗体?

最佳答案

您需要使用以下内容根据字符的位置指定格式:

.Cells(7, 5).Characters(Start:=1, Length:=13).Font.FontStyle = "Bold"

关于excel - 将字符串附加到 VBA 中的粗体字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25433977/

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