answersLogoWhite

0


Best Answer

A formula is statement written by the user to be calculated. Formulas can be as simple or as complex as the user wants. A formula can contain values, references to cells, defined names, and functions.

All formulas must start with the equals sign.

=1+2+3

A function is a piece of code designed to calculate specific values and are used inside formulas. Functions to sum values, calculate a trigonometric cosine, and to calculate the current time are built into excel. Additional functions can be defined using Visual Basic.

Functions are typed alongside parenthesizes, where in the arguments if any are listed in between. To use functions in a formula, for example

=COS(3.14) will return the calculated cosine.

=NOW() returns the current time.

=SUM(1+2+3) *2 will multiply the sum by 2

User Avatar

Wiki User

8y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

A formula as in I=E/R is not compilable but a function written to compute the formula is compilable.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between formula and function in Excel?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between a formula and a function on a computer?

Generally, a formula is something you type that performs a simple function or combines functions. A function is a build in mini-application in Excel that does more complicated calculations. EXAMPLE: formula =A1+B1 function =SUM(A1:A23)


A formula prewritten by excel is called?

Function


Which formula prewritten by excel?

function


What is the difference between argument and function in Excel?

A function is a built-in formula in Excel designed to do a particular task. Arguments are values that you provide to a function to do its task, like cell address that hold numbers that you want to use for the function. For example, the numbers and addresses in the following SUM function are arguments: =SUM( A2:A5, 7, 800, B18 )


What is the symbol that tells excel that you are about to begin a formula?

the asterisk is used for what function when building a formula in excel


What can be used to find an Excel function by typing a description of the formula?

You can use the Insert Function button fx on the Formula bar to find an Excel function by typing a description of the formula at the Insert Function dialog box, in the Search for a function text box and then click Go.


What alerts excel that you are entering a formula of function?

an equal sign =


What is the excel formula for a Z test?

Excel has a ZTEST function. It has the format ZTEST(array, µ0, sigma).


What is the nested formula of MS Excel?

A nested formula is where one or more functions are placed inside another function to make a formula. For example you can write a formula where you put an IF function within an IF function and this would be a nested formula.


How do you invoke Excel formula in vba?

prefix the excel function with application. eg. a=application.evaluate("1+2+3")


The function is the most frequently used type of function formula?

The SUM function would be the most commonly used function in Excel.


When you alert excel that you are entering a formula and not text you type a what preceding the formula?

Functions have a name followed by brackets. So when you have a name followed immediately by brackets, it is a function. On the worksheet it would also have an equals in front of it. In a module it would have the keyword Function in front of it.