我有一个带有文本的工作表,我想要一个公式或任何可以自动将文本转换为下一个单元格中的图像的脚本。他们是否可以在谷歌工作表中自动将单元格文本(值)转换为图像。任何人都可以帮助我。提前谢谢大家。
Column A Column B This my text this is my text ( in image format )
答案 0 :(得分:0)
这适用于 Excel 。
单击一个单元格并运行:
Sub Macro1()
ActiveCell.CopyPicture Appearance:=xlScreen, Format:=xlPicture
ActiveCell.Offset(0, 1).Select
ActiveSheet.Paste
End Sub