excel functions. part 2 (eng)

31
Part 2. Use of Excel Functions 1

Upload: chirag-shah

Post on 13-Jul-2016

230 views

Category:

Documents


1 download

DESCRIPTION

fd

TRANSCRIPT

Page 1: Excel Functions. Part 2 (Eng)

Part 2. Use of Excel Functions

1

Page 2: Excel Functions. Part 2 (Eng)

Part 2. Use of Excel Functions

2

The use of Excel Functions will be explained for the type of functions that read information and then deliver an answer.

Page 3: Excel Functions. Part 2 (Eng)

Part 2. Use of Excel Functions

3

The use of Excel Functions will be explained for the type of functions that read information and then deliver an answer.An examples of such a function is presented here, where a function receives as inputs the nominal diameter (in inches) and the shedule for a carbon steel pipe.

Page 4: Excel Functions. Part 2 (Eng)

Part 2. Use of Excel Functions

4

The use of Excel Functions will be explained for the type of functions that read information and then deliver an answer.An examples of such a function is presented here, where a function receives as inputs the nominal diameter (in inches) and the shedule for a carbon steel pipe.

As a result it will be delivered the inside diameter.

Page 5: Excel Functions. Part 2 (Eng)

Defining the name of the function

5

Page 6: Excel Functions. Part 2 (Eng)

Defining the name of the function In our case, all functions start with the word "Pipe"

6

Page 7: Excel Functions. Part 2 (Eng)

Defining the name of the function

Pipe

In our case, all functions start with the word "Pipe"

7

Page 8: Excel Functions. Part 2 (Eng)

Defining the name of the function

Next, consider the case of the unit to be used for the nominal diameter, which may be in Imperial units or the International System.

Pipe

In our case, all functions start with the word "Pipe"

8

Page 9: Excel Functions. Part 2 (Eng)

Defining the name of the function

Next, consider the case of the unit to be used for the nominal diameter, which may be in Imperial units or the International System.

In the case of this example, to indicate that the function receives nominal diameters in inches, one adds "Imp". Thus the name is

Pipe

In our case, all functions start with the word "Pipe"

9

Page 10: Excel Functions. Part 2 (Eng)

Defining the name of the function

Next, consider the case of the unit to be used for the nominal diameter, which may be in Imperial units or the International System.

In the case of this example, to indicate that the function receives nominal diameters in inches, one adds "Imp". Thus the name is

Pipe

In our case, all functions start with the word "Pipe"

Pipe_Imp

10

Page 11: Excel Functions. Part 2 (Eng)

Defining the name of the function

Next, consider the case of the unit to be used for the nominal diameter, which may be in Imperial units or the International System.

In the case of this example, to indicate that the function receives nominal diameters in inches, one adds "Imp". Thus the name is

Pipe

In our case, all functions start with the word "Pipe"

Pipe_Imp

Third, one indicates the type of pipe material. In our example it is carbon steel, and this is indicated as "CS". So, the code is

11

Page 12: Excel Functions. Part 2 (Eng)

Defining the name of the function

Next, consider the case of the unit to be used for the nominal diameter, which may be in Imperial units or the International System.

In the case of this example, to indicate that the function receives nominal diameters in inches, one adds "Imp". Thus the name is

Pipe

In our case, all functions start with the word "Pipe"

Pipe_Imp

Third, one indicates the type of pipe material. In our example it is carbon steel, and this is indicated as "CS". So, the code is

12

Pipe_Imp_CS

Page 13: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

13

Page 14: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

Pipe_Imp_CS_Dint

14

Page 15: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

Pipe_Imp_CS_Dint

Finally, we indicate which are the parameters to be delivered. In this case they are the nominal diameter "dn" and the shedule "sch". Thus, the name of the function is as follows

15

Page 16: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

Pipe_Imp_CS_Dint

Finally, we indicate which are the parameters to be delivered. In this case they are the nominal diameter "dn" and the shedule "sch". Thus, the name of the function is as follows

Pipe_Imp_CS_Dint_dn_sch

16

Page 17: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

Pipe_Imp_CS_Dint

Finally, we indicate which are the parameters to be delivered. In this case they are the nominal diameter "dn" and the shedule "sch". Thus, the name of the function is as follows

Pipe_Imp_CS_Dint_dn_sch

The function ends with a parenthesis in which you enter the values of the input parameters. With this object you can, for example, insert the values as

17

Page 18: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

Pipe_Imp_CS_Dint

Finally, we indicate which are the parameters to be delivered. In this case they are the nominal diameter "dn" and the shedule "sch". Thus, the name of the function is as follows

Pipe_Imp_CS_Dint_dn_sch

The function ends with a parenthesis in which you enter the values of the input parameters. With this object you can, for example, insert the values as

Pipe_Imp_CS_Dint_dn_sch(4, STD)

18

Page 19: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

Pipe_Imp_CS_Dint

Finally, we indicate which are the parameters to be delivered. In this case they are the nominal diameter "dn" and the shedule "sch". Thus, the name of the function is as follows

Pipe_Imp_CS_Dint_dn_sch

The function ends with a parenthesis in which you enter the values of the input parameters. With this object you can, for example, insert the values as

Pipe_Imp_CS_Dint_dn_sch(4, STD)

or you can enter the cell addresses where these values are. For example

19

Page 20: Excel Functions. Part 2 (Eng)

Next, we indicate which parameter is to be calculated. We begin by calculating the inner diameter, so we added “Dint"

Pipe_Imp_CS_Dint

Finally, we indicate which are the parameters to be delivered. In this case they are the nominal diameter "dn" and the shedule "sch". Thus, the name of the function is as follows

Pipe_Imp_CS_Dint_dn_sch

The function ends with a parenthesis in which you enter the values of the input parameters. With this object you can, for example, insert the values as

Pipe_Imp_CS_Dint_dn_sch(C2, C3)

Pipe_Imp_CS_Dint_dn_sch(4, STD)

or you can enter the cell addresses where these values are. For example

20

Page 21: Excel Functions. Part 2 (Eng)

21

Application of the function in an Excel spreadsheet

Page 22: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

22

Application of the function in an Excel spreadsheet

Page 23: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

23

Application of the function in an Excel spreadsheet

dn = 4 in

Page 24: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

24

Application of the function in an Excel spreadsheet

dn = 4 in

sch = STD

Page 25: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

25

Application of the function in an Excel spreadsheet

Call the function and enter the input variables

dn = 4 in

sch = STD

Page 26: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

26

Application of the function in an Excel spreadsheet

Call the function and enter the input variablesdn = 4 insch = STD

dn = 4 in

sch = STD

Page 27: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

27

Application of the function in an Excel spreadsheet

Call the function and enter the input variablesdn = 4 insch = STD

dn = 4 in

sch = STD

di = Pipe_Imp_CS_Dint_dn_sch(F4,F5)

Page 28: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

28

Application of the function in an Excel spreadsheet

Call the function and enter the input variables

Press Enter

dn = 4 insch = STD

dn = 4 in

sch = STD

di = Pipe_Imp_CS_Dint_dn_sch(F4,F5)

Page 29: Excel Functions. Part 2 (Eng)

Enter the nominal diameter and pipe shedule

29

Application of the function in an Excel spreadsheet

Call the function and enter the input variables

Press Enterdn = 4 insch = STD

dn = 4 insch = STD

dn = 4 in

sch = STD

di = Pipe_Imp_CS_Dint_dn_sch(F4,F5)

Page 30: Excel Functions. Part 2 (Eng)

Ingresar el diámetro nominal y la cédula de la cañería

30

Application of the function in an Excel spreadsheet

Call the function and enter the input variables

Press Enterdn = 4 insch = STD

dn = 4 insch = STD

dn = 4 in

sch = STD

di = Pipe_Imp_CS_Dint_dn_sch(F4,F5)

di = 102.26 mm

Page 31: Excel Functions. Part 2 (Eng)

31

End of Part 2