电脑知识|excel如何自定义公式,excel表格自己设置公式( 二 )


第三行,它是与第一行成对出现的,当你手工输入第一行的时候,第三行的end function就会自动出现,表示自定义函数的结束 。
4、输入完毕,关闭窗口,自定义的函数就完成了 。 【你需要有一定的VB基础知识】

5、然后就是自定义函数实际的运用了,运用前可以做个简单的检验,看看是不是准确,一般来是不会错的 。

有时候自定义复杂函数,需要基本的数学知识和VBA基础,这需要自身的日积月累了 。
【注意事项】
      自定义的函数虽然可以像内置函数一样使用,不过却并不是真正的内置函数,只能用于当前工作簿 。

excel 如何定义一个自己所需要的公式 =(A1+B1)*(C1*D1+5)/3
A1、B1、C1、D1中分别填写对应的数值!
公式放在其它位置!
Excel 条件格式的设置,,我想自定义公式进行设置,,,,怎么弄 打开一个空白的Excel点击“工具”菜单,选择“宏”中“Visual Basic”,在弹出的窗口中双击左边的工程中的“ThisWorkbook”然后弹出的空白窗口中输入如下代码:
Dim iWatermelon As Integer
'西瓜
Dim iBanana As Integer
'香蕉
Dim iSeeds As Integer
'瓜子
Dim iBread As Integer
'面包

Sub Countfruit(theNumber As Integer)
'计算水果
iWatermelon = iWatermelon + theNumber
iBanana = iBanana + 2 * theNumber

End Sub

Sub Countsnacks(theNumber As Integer)
'计算零食
iSeeds = iSeeds + theNumber
iBread = iBread + 3 * theNumber
End Sub

Sub CountSomething(theNumber As Integer)
'计算一堆东西
Countfruit (2 * theNumber)
Countsnacks (3 * theNumber)
iBanana = iBanana + theNumber

MsgBox ("现在有" & iWatermelon & "个西瓜;" & iBanana & "个香蕉;" & iSeeds & "包瓜子;" & iBread & "面包")
End Sub

Sub countit()
'开始计算
CountSomething (12)

End Sub

然后把光标放在代码中的“开始计算”后,然后点击工具栏中的运行按钮即可跳出运算结果 。

此问题可以用C#编程解决最好!

推荐阅读