热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

无法修改单元格的.Text属性-Unabletomodifythe.Textpropertyofacell

Subex2()Sheets(sheet2).Range(a2).TextAnilEndSubIwanttocopythedataAnilinto
Sub ex2()
    Sheets("sheet2").Range("a2").Text = "Anil"
End Sub

I want to copy the data Anil into cell a2, but I am getting RUN time error saying:

我想将数据Anil复制到单元格a2中,但我收到RUN时间错误说:

Unable to set the Text property of the Range class.

无法设置Range类的Text属性。

Can any one advice how to work using TEXT METHOD?

任何人都可以建议如何使用TEXT METHOD工作?

3 个解决方案

#1


12  

.Text is read only.

.Text是只读的。

To set cell values you use the .Value property.

要设置单元格值,请使用.Value属性。

#2


2  

Use the .Value property and not the .Text:

使用.Value属性而不是.Text:

Sub ex2()
    Sheets("sheet2").Range("a2").Value = "Anil"
End Sub

#3


0  

According to the following link, you should be using the Value method...

根据以下链接,您应该使用Value方法...

http://msdn.microsoft.com/en-us/library/office/gg192736(v=office.14).aspx

http://msdn.microsoft.com/en-us/library/office/gg192736(v=office.14).aspx

Sub ex2()
    Sheets("sheet1").Range("a2").Value = "Anil"
End Sub

推荐阅读
author-avatar
丫头丫头520
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有