issue94:libreoffice
Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
issue94:libreoffice [2015/04/01 23:52] – d52fr | issue94:libreoffice [2015/04/08 14:44] (Version actuelle) – andre_domenech | ||
---|---|---|---|
Ligne 13: | Ligne 13: | ||
After the function name is the argument list, separated by commas, and surrounded by parenthesis. This is the (B5, A1:A6, 0.25) part of our sample function. Arguments can come in several forms, and the function will usually expect a certain type in each position of the arguments. Arguments can take the form of numbers (9), “Quoted text”, cell reference (C3), cell range (C3:C10), comparisons (C3 > C1), or another function. Note that quotes around a number, “9”, defines the argument as text – and not a number.** | After the function name is the argument list, separated by commas, and surrounded by parenthesis. This is the (B5, A1:A6, 0.25) part of our sample function. Arguments can come in several forms, and the function will usually expect a certain type in each position of the arguments. Arguments can take the form of numbers (9), “Quoted text”, cell reference (C3), cell range (C3:C10), comparisons (C3 > C1), or another function. Note that quotes around a number, “9”, defines the argument as text – and not a number.** | ||
- | Dans le passé, j'avais présenté et utilisé des focntions | + | Dans le passé, j'ai présenté et utilisé des fonctions |
Structure d'une fonction | Structure d'une fonction | ||
- | Comprendre la structure des fonctions | + | Comprendre la structure des fonctions aide si vous prévoyez de vous en servir. Je vais utiliser la fonction suivante pour présenter la structure des fonctions : |
=PRODUIT(B5; | =PRODUIT(B5; | ||
- | Les fonctions | + | Les fonctions |
- | + | ||
- | Le début de la fonction est le nom de la fonction. Traditionnellement, | + | |
- | + | ||
- | La liste des arguments suit le nom de la fonction, séparés par des points-virgules et encadrés par des parenthèses. C'est la partie (B5; A1:A6; 0,25) de la fonction exemple. Les arguments peut être sous différentes formes et la fonction attendra habituellement un certain type d' | + | |
+ | Le début de la fonction est le nom de la fonction. Traditionnellement, | ||
+ | La liste des arguments, séparés par des points-virgules et encadrés par des parenthèses, | ||
**Setting Up the Sheet | **Setting Up the Sheet | ||
Ligne 38: | Ligne 36: | ||
Start with the label “Start Volts” in cell A1. In cells A2:E2 put the following column headings: Device, Amps, Distance, Ohms/Foot, and Voltage. In cell B1 put 13.2 for your starting voltage. In A3:A5 put 1, 2, 3 for the devices. B3:B5 are the current draw for each device. Use 0.3, 0.25, and 0.5. The three distances for the wire are 75, 110, and 120. For the Ohms/Foot, use 0.00639 for all three. This is the approximate Ohms per foot for 16 AWG (US). Leave the Voltage column blank. This is where we will enter our formulas.** | Start with the label “Start Volts” in cell A1. In cells A2:E2 put the following column headings: Device, Amps, Distance, Ohms/Foot, and Voltage. In cell B1 put 13.2 for your starting voltage. In A3:A5 put 1, 2, 3 for the devices. B3:B5 are the current draw for each device. Use 0.3, 0.25, and 0.5. The three distances for the wire are 75, 110, and 120. For the Ohms/Foot, use 0.00639 for all three. This is the approximate Ohms per foot for 16 AWG (US). Leave the Voltage column blank. This is where we will enter our formulas.** | ||
+ | |||
+ | Préparer la feuille | ||
+ | |||
+ | Je travaille avec des installateurs de systèmes de contrôle d' | ||
+ | |||
+ | Vout = Vin - I(DR) | ||
+ | |||
+ | Où Vin est la tension d' | ||
+ | |||
+ | Commencez avec un titre « Tension initiale » dans la cellule A1. Dans les cellules A2:E2, placez les titres de colonne suivants : Appareil, Courant, Distance, Résistance/ | ||
**Function Wizard | **Function Wizard | ||
Ligne 51: | Ligne 59: | ||
Our formula starts with the voltage coming into the device. For the first device this is 13.2 from cell B1, so click into the formula text box at the bottom and type “B1-”. From the category drop down list select Mathematical. Scroll down the list and double-click PRODUCT. The PRODUCT function is added to the formula.** | Our formula starts with the voltage coming into the device. For the first device this is 13.2 from cell B1, so click into the formula text box at the bottom and type “B1-”. From the category drop down list select Mathematical. Scroll down the list and double-click PRODUCT. The PRODUCT function is added to the formula.** | ||
+ | |||
+ | L' | ||
+ | |||
+ | L' | ||
+ | |||
+ | Il y a trois façons d' | ||
+ | • Cliquez sur le bouton Assistant Fonction de la barre de formule. | ||
+ | • Insertion > Fonction... | ||
+ | • CTRL + F2 | ||
+ | |||
+ | L' | ||
+ | |||
+ | Notre formule commence par la tension initiale. Pour le premier appareil, elle est de 13,2 en cellule B1 ; aussi, cliquez en bas dans la zone de texte des formules et saisissez « B1- ». Dans la liste déroulante des catégories, | ||
+ | |||
**Click into the Number 1 text box. The first argument is the sum of all the amps for all the devices. Click on the Function Wizard button to the left of the Number 1 text box. This gives you a blank function wizard screen. Note that you now have Back and Next buttons at the bottom. Select Mathematical from the category list, but this time double-click the SUM function. Click into the Number 1 text box. Use your mouse to select cells B3:B5. The range is added to the Number 1 text box for SUM. | **Click into the Number 1 text box. The first argument is the sum of all the amps for all the devices. Click on the Function Wizard button to the left of the Number 1 text box. This gives you a blank function wizard screen. Note that you now have Back and Next buttons at the bottom. Select Mathematical from the category list, but this time double-click the SUM function. Click into the Number 1 text box. Use your mouse to select cells B3:B5. The range is added to the Number 1 text box for SUM. | ||
Ligne 63: | Ligne 85: | ||
NOTE: I could have used the multiplication operator (*) to accomplish the same thing in the PRODUCT function, but I used the function in order to illustrate the ability to use functions as arguments to other functions.** | NOTE: I could have used the multiplication operator (*) to accomplish the same thing in the PRODUCT function, but I used the function in order to illustrate the ability to use functions as arguments to other functions.** | ||
+ | |||
+ | Cliquez dans la zone de texte Nombre 1. Le premier argument est la somme de tous les courants pour tous les appareils. Cliquez sur la bouton assistant Fonction à gauche de la zone de texte Nombre 1. Ceci vous ouvre une fenêtre d' | ||
+ | |||
+ | Cliquez deux fois sur Précédent pour revenir à la fonction PRODUIT que nous avons commencé. Notez que la fonction SOMME est maintenant dans la zone de texte Nombre 1. Sélectionnez la zone de texte Nombre 2. A nouveau, double-cliquez sur PRODUIT. Dans la zone de texte Nombre 1 de cette deuxième fonction PRODUIT, entrez ou sélectionnez le groupe C3:D3. | ||
+ | |||
+ | Nous avons maintenant fini notre formule. La formule finale devrait ressembler à : | ||
+ | |||
+ | =B1-PRODUIT(SOMME(B3: | ||
+ | |||
+ | Cliquez sur OK pour fermer l' | ||
+ | |||
+ | NOTE : J' | ||
**Function List | **Function List | ||
Ligne 72: | Ligne 106: | ||
=E3-PRODUCT(SUM(B4: | =E3-PRODUCT(SUM(B4: | ||
+ | |||
+ | Liste de fonctions | ||
+ | |||
+ | La liste de fonctions est l' | ||
+ | |||
+ | Utilisons-la pour créer la formule du second appareil. Sélectionnez la cellule E4. Sélectionnez la zone de saisie de texte dans la barre de formule. C'est le meilleur endroit pour entrer une fonction en utilisant la liste de fonctions. Pour cet appareil, nous avons besoin de la tension disponible à l' | ||
+ | |||
+ | Le résultat final devrait être : | ||
+ | |||
+ | =E3-PRODUIT(SOMME(B4: | ||
**Manual Entry | **Manual Entry | ||
Ligne 82: | Ligne 126: | ||
Calc gives you three different methods for entering functions into a cell. Use the Function Wizard when you need as much guidance as possible, or when entering a complicated formula for the first time. The Function List gives you a list and short descriptions to aid you in using the correct arguments and functions in your formula. The manual method is great for entering short formulas, using functions you are familiar with, or repeating a formula you have used before.** | Calc gives you three different methods for entering functions into a cell. Use the Function Wizard when you need as much guidance as possible, or when entering a complicated formula for the first time. The Function List gives you a list and short descriptions to aid you in using the correct arguments and functions in your formula. The manual method is great for entering short formulas, using functions you are familiar with, or repeating a formula you have used before.** | ||
+ | |||
+ | Entrée manuelle | ||
+ | |||
+ | L' | ||
+ | |||
+ | =E4-PRODUIT(B5; | ||
+ | |||
+ | et appuyez sur Entrée. Pendant que vous tapez la fonction, Calc vous affiche une info-bulle de la fonction et de ses arguments. | ||
+ | |||
+ | Calc vous offre trois méthodes pour entrer des fonctions dans une cellule. Utilisez l' |
issue94/libreoffice.1427925154.txt.gz · Dernière modification : 2015/04/01 23:52 de d52fr