经验直达:
- 为什么我的WPS表格在用if函数时结果是
- NAME是什么意思
- wps表格用宏代码计算出现
一、为什么我的WPS表格在用if函数时结果是
这是因为公式中A、B和C 是文本,要加英文引号“”才行,解决办法如下:
1、如图所示,如果您输入主题的公式 , 输入的公式将会出现错误 。
2、单击“确定”后,将显示这里的“C”是错误的,但事实上它不是 。不仅这里的C是错的,前面的A和B也是错的 。
3、因为公式中的字母部分应该用半角状态的双引号括起来,而甲、乙、丙是文本,所以应该用英文引号括起来,在原公式上A、B和C 都变成“A”、“B”和“C ”;
4、修改完成后,单击输入 , 查看B1单元格显示正确的结果 。
5、将鼠标放在B1单元格的右下角,下拉公式填写,即可得到b列的数据 。
二、NAME是什么意思
是某个程序报的错误代码,先重启手机,如果还是没有好建议恢复出厂设置即可 。
恢复出厂设置方法如下:
一,在桌面上找到【设置】图标,或者从屏幕顶部下滑状态栏,点击右上角的【齿轮】图标 。
二 , 进入设置后,向下滑动,选择【更多设置】 。
三,再次向下滑动,找到【恢复出厂设置】进入 。
四,按情况选择恢复出厂设置的用户 。
五 , 还原所有设置 , 只还原你的vivo手机的设置,而下载安装的应用程序和音乐、视频等文件不会受到影响 。
六 , 清除所有数据,会让手机回到第一次开始时的状态,安装的应用程序都会抹掉,不过手机里储存的文件不会受到影响 。如果勾选了【手机U盘】,则储存的所有文件也会一并抹掉 。
七 , 确定后,点击【重置手机】,手机变回自动重启,然后开始恢复出厂设置 。
注意事项:操作之前请备份好手机手机,以免操作过程中数据丢失 。
三、wps表格用宏代码计算出现
【NAME是什么意思 为什么我的WPS表格在用if函数时结果是】你拷贝下面 代码试一下吧 。“FormulaR1C1”属性用错了,改成“Formula ”就可以 。
--------------------------------------------------------------
Sub Macro1()'
' Macro1 Macro'
Columns("A:A").Select
Selection.Delete Shift:=xlShiftToLeft
Columns("C:F").Select
Selection.Delete Shift:=xlShiftToLeft
Cells.Select
Cells.ColumnWidth = 20
Cells.RowHeight = 28.5
Range("D1").Select
Selection.FormulaR1C1 = "佣金"
Range("D2").Select
Selection.FormulaR1C1 = "5"
Rows("1:1").Select
Selection.Insert Shift:=xlShiftDown
Range("E2").Select
Selection.FormulaR1C1 = "合计本金"
Range("E4").Select
Selection.FormulaR1C1 = "佣金"
Range("E3").Select
Selection.Formula = "=SUM(B3:B10000)"
Range("E5").Select
Selection.Formula = "=SUM(D3:D10000)"
Range("E6").Select
Selection.FormulaR1C1 = "合计"
Range("E7").Select
Selection.Formula = "=E3 E5"
Columns("A:F").Select
Selection.HorizontalAlignment = xlHAlignCenter
With Selection.Borders(xlEdgeLeft)
.Weight = xlThin
.LineStyle = xlContinuous
End With
With Selection.Borders(xlEdgeTop)
.Weight = xlThin
.LineStyle = xlContinuous
End With
With Selection.Borders(xlEdgeBottom)
.Weight = xlThin
.LineStyle = xlContinuous
End With
With Selection.Borders(xlEdgeRight)
.Weight = xlThin
.LineStyle = xlContinuous
End With
With Selection.Borders(xlInsideVertical)
.Weight = xlThin
.LineStyle = xlContinuous
End With
With Selection.Borders(xlInsideHorizontal)
.Weight = xlThin
.LineStyle = xlContinuous
End With
Selection.Borders(xlEdgeLeft).ColorIndex = xlColorIndexAutomatic
Selection.Borders(xlEdgeTop).ColorIndex = xlColorIndexAutomatic
Selection.Borders(xlEdgeBottom).ColorIndex = xlColorIndexAutomatic
Selection.Borders(xlEdgeRight).ColorIndex = xlColorIndexAutomatic
Selection.Borders(xlInsideVertical).ColorIndex = xlColorIndexAutomatic
Selection.Borders(xlInsideHorizontal).ColorIndex = xlColorIndexAutomatic
Range("E1:E10").Select
With Selection.Font
.Color = 255
.TintAndShade = 0
End With
Selection.Font.Bold = True
Selection.Font.Size = 14
End Sub