2016-03-11 00:48:53 +00:00
<!DOCTYPE html>
< html >
< head >
< title > Insérer une fonction< / title >
< meta charset = "utf-8" / >
2018-03-20 09:08:38 +00:00
< meta name = "description" content = "Insert function to perform basic calculations" / >
2016-03-11 00:48:53 +00:00
< link type = "text/css" rel = "stylesheet" href = "../editor.css" / >
< script type = "text/javascript" src = "../callback.js" > < / script >
2018-03-20 09:08:38 +00:00
< script type = "text/javascript" src = "../search/js/page-search.js" > < / script >
2016-03-11 00:48:53 +00:00
< / head >
< body >
< div class = "mainpart" >
2018-03-20 09:08:38 +00:00
< div class = "search-field" >
< input id = "search" class = "searchBar" placeholder = "Recherche" type = "text" onkeypress = "doSearch(event)" >
< / div >
2016-03-11 00:48:53 +00:00
< h1 > Insérer une fonction< / h1 >
2018-03-20 09:08:38 +00:00
< p > La possibilité d'accomplir les opérations de calcul de base est la raison principale d'utiliser un classeur. Certaines d'entre elles sont exécutées automatiquement lorsque vous sélectionnez une plage de cellules dans votre feuille de calcul :< / p >
< ul >
< li > < b > AVERAGE< / b > est utilisée pour analyser la plage de données et trouver la valeur moyenne.< / li >
< li > < b > COUNT< / b > est utilisée pour compter le nombre de cellules sélectionnées qui contiennent des nombres en ignorant les cellules vides.< / li >
< li > < b > SUM< / b > est utilisée pour ajouter tous les nombres dans la plage sélectionnée en ignorant les cellules vides ou celles contenant du texte.< / li >
< / ul >
< p > Les résultats de ces calculs sont affichés dans le coin inférieur droit de la barre d'état.< / p >
< p > < img alt = "Calculs de base" src = "../images/basiccalculations.png" / > < / p >
< p > Pour le faire, vous pouvez insérer une formule nécessaire à la main en utilisant des opérateurs mathématiques appropriés ou insérer une formule prédéfinie - < b > Fonction< / b > .< / p >
< p id = "insertfunction" > Pour insérer une fonction,< / p >
2016-03-11 00:48:53 +00:00
< ol >
< li > sélectionnez une cellule dans laquelle vous voulez afficher le résultat de la fonction,< / li >
2018-03-20 09:08:38 +00:00
< li > cliquez sur l'icône < b > Insérer une fonction< / b > < img alt = "Icône Insérer une fonction" src = "../images/insertfunction.png" / > située dans l'onglet < b > Accueil< / b > de la barre d'outils supérieure, et sélectionnez une des fonctions d'usage courant (SUM, MIN, MAX, COUNT) ou cliquez sur l'option < b > Plus< / b > , < br / > ou faites un clic droit sur la cellule sélectionnée et sélectionnez l'option < b > Insérer une fonction< / b > depuis le menu, < br / > ou cliquez sur l'icône < img alt = "Icône Fonction" src = "../images/function.png" / > qui se trouve devant la barre de formule,< / li >
< li > Dans la fenêtre < b > Insérer une fonction< / b > qui s'ouvre, sélectionnez le groupe de fonctions souhaité, puis choisissez la fonction dont vous avez besoin dans la liste et cliquez sur < b > OK< / b > .< / li >
< li > entrez les arguments de la fonction manuellement ou en faisant glisser le curseur pour sélectionner une plage de cellules à inclure en tant que argument. Si la fonction nécessite plusieurs arguments, ils doivent être séparés par des virgules.< p class = "note" > < b > Remarque< / b > : en règle générale, les valeurs numériques, les valeurs logiques (TRUE, FALSE), les valeurs de texte (entre guillemets), les références de cellules, les références de plage de cellules, < a href = "UseNamedRanges.htm#usingnames" onclick = "onhyperlinkclick(this)" > les noms attribués aux plages< / a > et autres fonctions peuvent être utilisés comme arguments de fonction.< / p >
< / li >
< li > Appuyez sur la touche < b > Entrée< / b > .< / li >
2016-03-11 00:48:53 +00:00
< / ol >
< p > Voici la liste des fonctions disponibles regroupées par catégories :< / p >
< table class = "helptable" >
2018-03-20 09:08:38 +00:00
< tr class = "headerlite" >
< td width = "25%" > < b > Catégorie de fonctions< / b > < / td >
< td width = "40%" > < b > Description< / b > < / td >
< td width = "35%" > < b > Fonctions< / b > < / td >
< / tr >
< tr >
< td > Fonctions de données et texte< / td >
< td > Servent à afficher correctement les données de texte dans votre classeur.< / td >
< td > < a href = "../Functions/char.htm" onclick = "onhyperlinkclick(this)" > CHAR< / a > ; < a href = "../Functions/clean.htm" onclick = "onhyperlinkclick(this)" > CLEAN< / a > ; < a href = "../Functions/code.htm" onclick = "onhyperlinkclick(this)" > CODE< / a > ; < a href = "../Functions/concatenate.htm" onclick = "onhyperlinkclick(this)" > CONCATENATE< / a > ; < a href = "../Functions/concat.htm" onclick = "onhyperlinkclick(this)" > CONCAT< / a > ; < a href = "../Functions/dollar.htm" onclick = "onhyperlinkclick(this)" > DOLLAR< / a > ; < a href = "../Functions/exact.htm" onclick = "onhyperlinkclick(this)" > EXACT< / a > ; < a href = "../Functions/find.htm" onclick = "onhyperlinkclick(this)" > FIND< / a > ; < a href = "../Functions/find.htm" onclick = "onhyperlinkclick(this)" > FINDB< / a > ; < a href = "../Functions/fixed.htm" onclick = "onhyperlinkclick(this)" > FIXED< / a > ; < a href = "../Functions/left.htm" onclick = "onhyperlinkclick(this)" > LEFT< / a > ; < a href = "../Functions/left.htm" onclick = "onhyperlinkclick(this)" > LEFTB< / a > ; < a href = "../Functions/len.htm" onclick = "onhyperlinkclick(this)" > LEN< / a > ; < a href = "../Functions/len.htm" onclick = "onhyperlinkclick(this)" > LENB< / a > ; < a href = "../Functions/lower.htm" onclick = "onhyperlinkclick(this)" > LOWER< / a > ; < a href = "../Functions/mid.htm" onclick = "onhyperlinkclick(this)" > MID< / a > ; < a href = "../Functions/mid.htm" onclick = "onhyperlinkclick(this)" > MIDB< / a > ; < a href = "../Functions/numbervalue.htm" onclick = "onhyperlinkclick(this)" > NUMBERVALUE< / a > ; < a href = "../Functions/proper.htm" onclick = "onhyperlinkclick(this)" > PROPER< / a > ; < a href = "../Functions/replace.htm" onclick = "onhyperlinkclick(this)" > REPLACE< / a > ; < a href = "../Functions/replace.htm" onclick = "onhyperlinkclick(this)" > REPLACEB< / a > ; < a href = "../Functions/rept.htm" onclick = "onhyperlinkclick(this)" > REPT< / a > ; < a href = "../Functions/right.htm" onclick = "onhyperlinkclick(this)" > RIGHT< / a > ; < a href = "../Functions/right.htm" onclick = "onhyperlinkclick(this)" > RIGHTB< / a > ; < a href = "../Functions/search.htm" onclick = "onhyperlinkclick(this)" > SEARCH< / a > ; < a href = "../Functions/search.htm" onclick = "onhyperlinkclick(this)" > SEARCHB< / a > ; < a href = "../Functions/substitute.htm" onclick = "onhyperlinkclick(this)" > SUBSTITUTE< / a > ; < a href = "../Functions/t.htm" onclick = "onhyperlinkclick(this)" > T< / a > ; < a href = "../Functions/text.htm" onclick = "onhyperlinkclick(this)" > TEXT< / a > ; < a href = "../Functions/textjoin.htm" onclick = "onhyperlinkclick(this)" > TEXTJOIN< / a > ; < a href = "../Functions/trim.htm" onclick = "onhyperlinkclick(this)" > TRIM< / a > ; < a href = "../Functions/unichar.htm" onclick = "onhyperlinkclick(this)" > UNICHAR< / a > ; < a href = "../Functions/unicode.htm" onclick = "onhyperlinkclick(this)" > UNICODE< / a > ; < a href = "../Functions/upper.htm" onclick = "onhyperlinkclick(this)" > UPPER< / a > ; < a href = "../Functions/value.htm" onclick = "onhyperlinkclick(this)" > VALUE< / a > < / td >
< / tr >
< tr >
< td > Fonctions statistiques< / td >
< td > Servent à analyser les données : trouver la valeur moyenne, les valeurs plus grandes ou plus petites dans une plage de cellules.< / td >
2018-04-12 09:49:02 +00:00
< td > < a href = "../Functions/avedev.htm" onclick = "onhyperlinkclick(this)" > AVEDEV< / a > ; < a href = "../Functions/average.htm" onclick = "onhyperlinkclick(this)" > AVERAGE< / a > ; < a href = "../Functions/averagea.htm" onclick = "onhyperlinkclick(this)" > AVERAGEA< / a > ; < a href = "../Functions/averageif.htm" onclick = "onhyperlinkclick(this)" > AVERAGEIF< / a > ; < a href = "../Functions/averageifs.htm" onclick = "onhyperlinkclick(this)" > AVERAGEIFS< / a > ; < a href = "../Functions/betadist.htm" onclick = "onhyperlinkclick(this)" > BETADIST< / a > ; < a href = "../Functions/beta-dist.htm" onclick = "onhyperlinkclick(this)" > BETA.DIST< / a > ; < a href = "../Functions/beta-inv.htm" onclick = "onhyperlinkclick(this)" > BETA.INV< / a > ; < a href = "../Functions/binomdist.htm" onclick = "onhyperlinkclick(this)" > BINOMDIST< / a > ; < a href = "../Functions/binom-dist.htm" onclick = "onhyperlinkclick(this)" > BINOM.DIST< / a > ; < a href = "../Functions/binom-dist-range.htm" onclick = "onhyperlinkclick(this)" > BINOM.DIST.RANGE< / a > ; < a href = "../Functions/binom-inv.htm" onclick = "onhyperlinkclick(this)" > BINOM.INV< / a > ; < a href = "../Functions/chidist.htm" onclick = "onhyperlinkclick(this)" > CHIDIST< / a > ; < a href = "../Functions/chiinv.htm" onclick = "onhyperlinkclick(this)" > CHIINV< / a > ; < a href = "../Functions/chisq-dist.htm" onclick = "onhyperlinkclick(this)" > CHISQ.DIST< / a > ; < a href = "../Functions/chisq-dist-rt.htm" onclick = "onhyperlinkclick(this)" > CHISQ.DIST.RT< / a > ; < a href = "../Functions/chisq-inv.htm" onclick = "onhyperlinkclick(this)" > CHISQ.INV< / a > ; < a href = "../Functions/chisq-inv-rt.htm" onclick = "onhyperlinkclick(this)" > CHISQ.INV.RT< / a > ; < a href = "../Functions/chitest.htm" onclick = "onhyperlinkclick(this)" > CHITEST< / a > ; < a href = "../Functions/chisq-test.htm" onclick = "onhyperlinkclick(this)" > CHISQ.TEST< / a > ; < a href = "../Functions/confidence.htm" onclick = "onhyperlinkclick(this)" > CONFIDENCE< / a > ; < a href = "../Functions/confidence-norm.htm" onclick = "onhyperlinkclick(this)" > CONFIDENCE.NORM< / a > ; < a href = "../Functions/confidence-t.htm" onclick = "onhyperlinkclick(this)" > CONFIDENCE.T< / a > ; < a href = "../Functions/correl.htm" onclick = "onhyperlinkclick(this)" > CORREL< / a > ; < a href = "../Functions/count.htm" onclick = "onhyperlinkclick(this)" > COUNT< / a > ; < a href = "../Functions/counta.htm" onclick = "onhyperlinkclick(this)" > COUNTA< / a > ; < a href = "../Functions/countblank.htm" onclick = "onhyperlinkclick(this)" > COUNBLANK< / a > ; < a href = "../Functions/countif.htm" onclick = "onhyperlinkclick(this)" > COUNTIF< / a > ; < a href = "../Functions/countifs.htm" onclick = "onhyperlinkclick(this)" > COUNTIFS< / a > ; < a href = "../Functions/covar.htm" onclick = "onhyperlinkclick(this)" > COVAR< / a > ; < a href = "../Functions/covariance-p.htm" onclick = "onhyperlinkclick(this)" > COVARIANCE.P< / a > ; < a href = "../Functions/covariance-s.htm" onclick = "onhyperlinkclick(this)" > COVARIANCE.S< / a > ; < a href = "../Functions/critbinom.htm" onclick = "onhyperlinkclick(this)" > CRITBINOM< / a > ; < a href = "../Functions/devsq.htm" onclick = "onhyperlinkclick(this)" > DEVSQ< / a > ; < a href = "../Functions/expon-dist.htm" onclick = "onhyperlinkclick(this)" > EXPON.DIST< / a > ; < a href = "../Functions/expondist.htm" onclick = "onhyperlinkclick(this)" > EXPONDIST< / a > ; < a href = "../Functions/f-dist.htm" onclick = "onhyperlinkclick(this)" > F.DIST< / a > ; < a href = "../Functions/fdist.htm" onclick = "onhyperlinkclick(this)" > FDIST< / a > ; < a href = "../Functions/f-dist-rt.htm" onclick = "onhyperlinkclick(this)" > F.DIST.RT< / a > ; < a href = "../Functions/f-inv.htm" onclick = "onhyperlinkclick(this)" > F.INV< / a > ; < a href = "../Functions/finv.htm" onclick = "onhyperlinkclick(this)" > FINV< / a > ; < a href = "../Functions/f-inv-rt.htm" onclick = "onhyperlinkclick(this)" > F.INV.RT< / a > ; < a href = "../Functions/fisher.htm" onclick = "onhyperlinkclick(this)" > FISHER< / a > ; < a href = "../Functions/fisherinv.htm" onclick = "onhyperlinkclick(this)" > FISHERINV< / a > ; < a href = "../Functions/forecast.htm" onclick = "onhyperlinkclick(this)" > FORECAST< / a > ; < a href = "../Functions/forecast-linear.htm" onclick = "onhyperlinkclick(this)" > FORECAST.LINEAR< / a > ; < a href = "../Functions/frequency.htm" onclick = "onhyperlinkclick(this)" > FREQUENCY< / a > ; < a href = "../Functions/gamma.htm" onclick = "onhyperlinkclick(this)" > GAMMA< / a > ; < a href = "../Functions/gamma-dist.htm" onclick
2018-03-20 09:08:38 +00:00
< / tr >
< tr >
< td > Fonctions financières< / td >
< td > Servent à effectuer certaines opérations financières, calculer la valeur nette actuelle, les paiements etc...< / td >
< td > < a href = "../Functions/accrint.htm" onclick = "onhyperlinkclick(this)" > ACCRINT< / a > ; < a href = "../Functions/accrintm.htm" onclick = "onhyperlinkclick(this)" > ACCRINTM< / a > ; < a href = "../Functions/amordegrc.htm" onclick = "onhyperlinkclick(this)" > AMORDEGRC< / a > ; < a href = "../Functions/amorlinc.htm" onclick = "onhyperlinkclick(this)" > AMORLINC< / a > ; < a href = "../Functions/coupdaybs.htm" onclick = "onhyperlinkclick(this)" > COUPDAYBS< / a > ; < a href = "../Functions/coupdays.htm" onclick = "onhyperlinkclick(this)" > COUPDAYS< / a > ; < a href = "../Functions/coupdaysnc.htm" onclick = "onhyperlinkclick(this)" > COUPDAYSNC< / a > ; < a href = "../Functions/coupncd.htm" onclick = "onhyperlinkclick(this)" > COUPNCD< / a > ; < a href = "../Functions/coupnum.htm" onclick = "onhyperlinkclick(this)" > COUPNUM< / a > ; < a href = "../Functions/couppcd.htm" onclick = "onhyperlinkclick(this)" > COUPPCD< / a > ; < a href = "../Functions/cumipmt.htm" onclick = "onhyperlinkclick(this)" > CUMIPMT< / a > ; < a href = "../Functions/cumprinc.htm" onclick = "onhyperlinkclick(this)" > CUMPRINC< / a > ; < a href = "../Functions/db.htm" onclick = "onhyperlinkclick(this)" > DB< / a > ; < a href = "../Functions/ddb.htm" onclick = "onhyperlinkclick(this)" > DDB< / a > ; < a href = "../Functions/disc.htm" onclick = "onhyperlinkclick(this)" > DISC< / a > ; < a href = "../Functions/dollarde.htm" onclick = "onhyperlinkclick(this)" > DOLLARDE< / a > ; < a href = "../Functions/dollarfr.htm" onclick = "onhyperlinkclick(this)" > DOLLARFR< / a > ; < a href = "../Functions/duration.htm" onclick = "onhyperlinkclick(this)" > DURATION< / a > ; < a href = "../Functions/effect.htm" onclick = "onhyperlinkclick(this)" > EFFECT< / a > ; < a href = "../Functions/fv.htm" onclick = "onhyperlinkclick(this)" > FV< / a > ; < a href = "../Functions/fvschedule.htm" onclick = "onhyperlinkclick(this)" > FVSCHEDULE< / a > ; < a href = "../Functions/intrate.htm" onclick = "onhyperlinkclick(this)" > INTRATE< / a > ; < a href = "../Functions/ipmt.htm" onclick = "onhyperlinkclick(this)" > IPMT< / a > ; < a href = "../Functions/irr.htm" onclick = "onhyperlinkclick(this)" > IRR< / a > ; < a href = "../Functions/ispmt.htm" onclick = "onhyperlinkclick(this)" > ISPMT< / a > ; < a href = "../Functions/mduration.htm" onclick = "onhyperlinkclick(this)" > MDURATION< / a > ; < a href = "../Functions/mirr.htm" onclick = "onhyperlinkclick(this)" > MIRR< / a > ; < a href = "../Functions/nominal.htm" onclick = "onhyperlinkclick(this)" > NOMINAL< / a > ; < a href = "../Functions/nper.htm" onclick = "onhyperlinkclick(this)" > NPER< / a > ; < a href = "../Functions/npv.htm" onclick = "onhyperlinkclick(this)" > NPV< / a > ; < a href = "../Functions/oddfprice.htm" onclick = "onhyperlinkclick(this)" > ODDFPRICE< / a > ; < a href = "../Functions/oddfyield.htm" onclick = "onhyperlinkclick(this)" > ODDFYIELD< / a > ; < a href = "../Functions/oddlprice.htm" onclick = "onhyperlinkclick(this)" > ODDLPRICE< / a > ; < a href = "../Functions/oddlyield.htm" onclick = "onhyperlinkclick(this)" > ODDLYIELD< / a > ; < a href = "../Functions/pmt.htm" onclick = "onhyperlinkclick(this)" > PMT< / a > ; < a href = "../Functions/ppmt.htm" onclick = "onhyperlinkclick(this)" > PPMT< / a > ; < a href = "../Functions/price.htm" onclick = "onhyperlinkclick(this)" > PRICE< / a > ; < a href = "../Functions/pricedisc.htm" onclick = "onhyperlinkclick(this)" > PRICEDISC< / a > ; < a href = "../Functions/pricemat.htm" onclick = "onhyperlinkclick(this)" > PRICEMAT< / a > ; < a href = "../Functions/pv.htm" onclick = "onhyperlinkclick(this)" > PV< / a > ; < a href = "../Functions/rate.htm" onclick = "onhyperlinkclick(this)" > RATE< / a > ; < a href = "../Functions/received.htm" onclick = "onhyperlinkclick(this)" > RECEIVED< / a > ; < a href = "../Functions/rri.htm" onclick = "onhyperlinkclick(this)" > RRI< / a > ; < a href = "../Functions/sln.htm" onclick = "onhyperlinkclick(this)" > SLN< / a > ; < a href = "../Functions/syd.htm" onclick = "onhyperlinkclick(this)" > SYD< / a > ; < a href = "../Functions/tbilleq.htm" onclick = "onhyperlinkclick(this)" > TBILLEQ< / a > ; < a href = "../Functions/tbillprice.htm" onclick = "onhyperlinkclick(this)" > TBILLPRICE< / a > ; < a href = "../Functions/tbillyield.htm" onclick = "onhyperlinkclick(this)" > TBILLYIELD< / a > ; < a href = "../Functions/vdb.htm" onclick = "onhyperlinkclick(this)" > VDB< / a > ; < a href = "../Functions/xirr.htm" onclick = "onhyperlinkclick(this)" > XIRR< / a > ; < a href = "../Functions/xnpv.htm" onclick = "onhyperlinkclick(this)" > XNPV< / a > ; < a href = "../Functions/yield.htm"
< / tr >
< tr >
< td > Fonctions mathématiques et trigonométriques< / td >
< td > Servent à effectuer des opérations mathématiques et trigonométriques telles que l'ajout, la multiplication, la division, l'arrondissement, etc.< / td >
< td > < a href = "../Functions/abs.htm" onclick = "onhyperlinkclick(this)" > ABS< / a > ; < a href = "../Functions/acos.htm" onclick = "onhyperlinkclick(this)" > ACOS< / a > ; < a href = "../Functions/acosh.htm" onclick = "onhyperlinkclick(this)" > ACOSH< / a > ; < a href = "../Functions/acot.htm" onclick = "onhyperlinkclick(this)" > ACOT< / a > ; < a href = "../Functions/acoth.htm" onclick = "onhyperlinkclick(this)" > ACOTH< / a > ; < a href = "../Functions/aggregate.htm" onclick = "onhyperlinkclick(this)" > AGGREGATE< / a > ; < a href = "../Functions/arabic.htm" onclick = "onhyperlinkclick(this)" > ARABIC< / a > ; < a href = "../Functions/asin.htm" onclick = "onhyperlinkclick(this)" > ASIN< / a > ; < a href = "../Functions/asinh.htm" onclick = "onhyperlinkclick(this)" > ASINH< / a > ; < a href = "../Functions/atan.htm" onclick = "onhyperlinkclick(this)" > ATAN< / a > ; < a href = "../Functions/atan2.htm" onclick = "onhyperlinkclick(this)" > ATAN2< / a > ; < a href = "../Functions/atanh.htm" onclick = "onhyperlinkclick(this)" > ATANH< / a > ; < a href = "../Functions/base.htm" onclick = "onhyperlinkclick(this)" > BASE< / a > ; < a href = "../Functions/ceiling.htm" onclick = "onhyperlinkclick(this)" > CEILING< / a > ; < a href = "../Functions/ceilingmath.htm" onclick = "onhyperlinkclick(this)" > CEILING.MATH< / a > ; < a href = "../Functions/ceilingprecise.htm" onclick = "onhyperlinkclick(this)" > CEILING.PRECISE< / a > ; < a href = "../Functions/combin.htm" onclick = "onhyperlinkclick(this)" > COMBIN< / a > ; < a href = "../Functions/combina.htm" onclick = "onhyperlinkclick(this)" > COMBINA< / a > ; < a href = "../Functions/cos.htm" onclick = "onhyperlinkclick(this)" > COS< / a > ; < a href = "../Functions/cosh.htm" onclick = "onhyperlinkclick(this)" > COSH< / a > ; < a href = "../Functions/cot.htm" onclick = "onhyperlinkclick(this)" > COT< / a > ; < a href = "../Functions/coth.htm" onclick = "onhyperlinkclick(this)" > COTH< / a > ; < a href = "../Functions/csc.htm" onclick = "onhyperlinkclick(this)" > CSC< / a > ; < a href = "../Functions/csch.htm" onclick = "onhyperlinkclick(this)" > CSCH< / a > ; < a href = "../Functions/decimal.htm" onclick = "onhyperlinkclick(this)" > DECIMAL< / a > ; < a href = "../Functions/degrees.htm" onclick = "onhyperlinkclick(this)" > DEGREES< / a > ; < a href = "../Functions/ecma-ceiling.htm" onclick = "onhyperlinkclick(this)" > ECMA.CEILING< / a > ; < a href = "../Functions/even.htm" onclick = "onhyperlinkclick(this)" > EVEN< / a > ; < a href = "../Functions/exp.htm" onclick = "onhyperlinkclick(this)" > EXP< / a > ; < a href = "../Functions/fact.htm" onclick = "onhyperlinkclick(this)" > FACT< / a > ; < a href = "../Functions/factdouble.htm" onclick = "onhyperlinkclick(this)" > FACTDOUBLE< / a > ; < a href = "../Functions/floor.htm" onclick = "onhyperlinkclick(this)" > FLOOR< / a > ; < a href = "../Functions/floorprecise.htm" onclick = "onhyperlinkclick(this)" > FLOOR.PRECISE< / a > ; < a href = "../Functions/floormath.htm" onclick = "onhyperlinkclick(this)" > FLOOR.MATH< / a > ; < a href = "../Functions/gcd.htm" onclick = "onhyperlinkclick(this)" > GCD< / a > ; < a href = "../Functions/int.htm" onclick = "onhyperlinkclick(this)" > INT< / a > ; < a href = "../Functions/isoceiling.htm" onclick = "onhyperlinkclick(this)" > ISO.CEILING< / a > ; < a href = "../Functions/lcm.htm" onclick = "onhyperlinkclick(this)" > LCM< / a > ; < a href = "../Functions/ln.htm" onclick = "onhyperlinkclick(this)" > LN< / a > ; < a href = "../Functions/log.htm" onclick = "onhyperlinkclick(this)" > LOG< / a > ; < a href = "../Functions/log10.htm" onclick = "onhyperlinkclick(this)" > LOG10< / a > ; < a href = "../Functions/mdeterm.htm" onclick = "onhyperlinkclick(this)" > MDETERM< / a > ; < a href = "../Functions/minverse.htm" onclick = "onhyperlinkclick(this)" > MINVERSE< / a > ; < a href = "../Functions/mmult.htm" onclick = "onhyperlinkclick(this)" > MMULT< / a > ; < a href = "../Functions/mod.htm" onclick = "onhyperlinkclick(this)" > MOD< / a > ; < a href = "../Functions/mround.htm" onclick = "onhyperlinkclick(this)" > MROUND< / a > ; < a href = "../Functions/multinomial.htm" onclick = "onhyperlinkclick(this)" > MULTINOMIAL< / a > ; < a href = "../Functions/odd.htm" onclick = "onhyperlinkclick(this)" > ODD< / a > ; < a href = "../Functions/pi.htm" onclick = "onhyperlinkclick(this)" > PI< / a > ; < a href = "../Functions/power.htm" onclick = "onhyperlinkclick(this)" > POWER< / a > ; < a href = "../Functions/product.htm" onclick = "onhyperlinkclick(this)" > PRODUCT< / a > ; < a href = "../Functions/quotient.htm" onclick = "onhyperlinkclick(this)" > QUOTIENT< / a > ; < a hr
< / tr >
< tr >
< td > Fonctions de recherche et de référence< / td >
< td > Servent à trouver facilement les informations dans la liste de données.< / td >
< td > < a href = "../Functions/address.htm" onclick = "onhyperlinkclick(this)" > ADDRESS< / a > ; < a href = "../Functions/choose.htm" onclick = "onhyperlinkclick(this)" > CHOOSE< / a > ; < a href = "../Functions/column.htm" onclick = "onhyperlinkclick(this)" > COLUMN< / a > ; < a href = "../Functions/columns.htm" onclick = "onhyperlinkclick(this)" > COLUMNS< / a > ; < a href = "../Functions/hlookup.htm" onclick = "onhyperlinkclick(this)" > HLOOKUP< / a > ; < a href = "../Functions/index.htm" onclick = "onhyperlinkclick(this)" > INDEX< / a > ; < a href = "../Functions/indirect.htm" onclick = "onhyperlinkclick(this)" > INDIRECT< / a > ; < a href = "../Functions/lookup.htm" onclick = "onhyperlinkclick(this)" > LOOKUP< / a > ; < a href = "../Functions/match.htm" onclick = "onhyperlinkclick(this)" > MATCH< / a > ; < a href = "../Functions/offset.htm" onclick = "onhyperlinkclick(this)" > OFFSET< / a > ; < a href = "../Functions/row.htm" onclick = "onhyperlinkclick(this)" > ROW< / a > ; < a href = "../Functions/rows.htm" onclick = "onhyperlinkclick(this)" > ROWS< / a > ; < a href = "../Functions/transpose.htm" onclick = "onhyperlinkclick(this)" > TRANSPOSE< / a > ; < a href = "../Functions/vlookup.htm" onclick = "onhyperlinkclick(this)" > VLOOKUP< / a > < / td >
< / tr >
< tr >
< td > Fonctions de date et d'heure< / td >
< td > Servent à afficher correctement la date et l'heure dans votre classeur.< / td >
< td > < a href = "../Functions/date.htm" onclick = "onhyperlinkclick(this)" > DATE< / a > ; < a href = "../Functions/datedif.htm" onclick = "onhyperlinkclick(this)" > DATEDIF< / a > ; < a href = "../Functions/datevalue.htm" onclick = "onhyperlinkclick(this)" > DATEVALUE< / a > ; < a href = "../Functions/day.htm" onclick = "onhyperlinkclick(this)" > DAY< / a > ; < a href = "../Functions/days.htm" onclick = "onhyperlinkclick(this)" > DAYS< / a > ; < a href = "../Functions/days360.htm" onclick = "onhyperlinkclick(this)" > DAYS360< / a > ; < a href = "../Functions/edate.htm" onclick = "onhyperlinkclick(this)" > EDATE< / a > ; < a href = "../Functions/eomonth.htm" onclick = "onhyperlinkclick(this)" > EOMONTH< / a > ; < a href = "../Functions/hour.htm" onclick = "onhyperlinkclick(this)" > HOUR< / a > ; < a href = "../Functions/isoweeknum.htm" onclick = "onhyperlinkclick(this)" > ISOWEEKNUM< / a > ; < a href = "../Functions/minute.htm" onclick = "onhyperlinkclick(this)" > MINUTE< / a > ; < a href = "../Functions/month.htm" onclick = "onhyperlinkclick(this)" > MONTH< / a > ; < a href = "../Functions/networkdays.htm" onclick = "onhyperlinkclick(this)" > NETWORKDAYS< / a > ; < a href = "../Functions/networkdays-intl.htm" onclick = "onhyperlinkclick(this)" > NETWORKDAYS.INTL< / a > ; < a href = "../Functions/now.htm" onclick = "onhyperlinkclick(this)" > NOW< / a > ; < a href = "../Functions/second.htm" onclick = "onhyperlinkclick(this)" > SECOND< / a > ; < a href = "../Functions/time.htm" onclick = "onhyperlinkclick(this)" > TIME< / a > ; < a href = "../Functions/timevalue.htm" onclick = "onhyperlinkclick(this)" > TIMEVALUE< / a > ; < a href = "../Functions/today.htm" onclick = "onhyperlinkclick(this)" > TODAY< / a > ; < a href = "../Functions/weekday.htm" onclick = "onhyperlinkclick(this)" > WEEKDAY< / a > ; < a href = "../Functions/weeknum.htm" onclick = "onhyperlinkclick(this)" > WEEKNUM< / a > ; < a href = "../Functions/workday.htm" onclick = "onhyperlinkclick(this)" > WORKDAY< / a > ; < a href = "../Functions/workday-intl.htm" onclick = "onhyperlinkclick(this)" > WORKDAY.INTL< / a > ; < a href = "../Functions/year.htm" onclick = "onhyperlinkclick(this)" > YEAR< / a > ; < a href = "../Functions/yearfrac.htm" onclick = "onhyperlinkclick(this)" > YEARFRAC< / a > < / td >
< / tr >
< tr >
< td > Fonctions d'ingénierie< / td >
< td > Sont utilisés pour effectuer des calculs d'ingénierie : conversion entre différentes bases, recherche de nombres complexes, etc.< / td >
< td > < a href = "../Functions/besseli.htm" onclick = "onhyperlinkclick(this)" > BESSELI< / a > ; < a href = "../Functions/besselj.htm" onclick = "onhyperlinkclick(this)" > BESSELJ< / a > ; < a href = "../Functions/besselk.htm" onclick = "onhyperlinkclick(this)" > BESSELK< / a > ; < a href = "../Functions/bessely.htm" onclick = "onhyperlinkclick(this)" > BESSELY< / a > ; < a href = "../Functions/bin2dec.htm" onclick = "onhyperlinkclick(this)" > BIN2DEC< / a > ; < a href = "../Functions/bin2hex.htm" onclick = "onhyperlinkclick(this)" > BIN2HEX< / a > ; < a href = "../Functions/bin2oct.htm" onclick = "onhyperlinkclick(this)" > BIN2OCT< / a > ; < a href = "../Functions/bitand.htm" onclick = "onhyperlinkclick(this)" > BITAND< / a > ; < a href = "../Functions/bitlshift.htm" onclick = "onhyperlinkclick(this)" > BITLSHIFT< / a > ; < a href = "../Functions/bitor.htm" onclick = "onhyperlinkclick(this)" > BITOR< / a > ; < a href = "../Functions/bitrshift.htm" onclick = "onhyperlinkclick(this)" > BITRSHIFT< / a > ; < a href = "../Functions/bitxor.htm" onclick = "onhyperlinkclick(this)" > BITXOR< / a > ; < a href = "../Functions/complex.htm" onclick = "onhyperlinkclick(this)" > COMPLEX< / a > ; < a href = "../Functions/dec2bin.htm" onclick = "onhyperlinkclick(this)" > DEC2BIN< / a > ; < a href = "../Functions/dec2hex.htm" onclick = "onhyperlinkclick(this)" > DEC2HEX< / a > ; < a href = "../Functions/dec2oct.htm" onclick = "onhyperlinkclick(this)" > DEC2OCT< / a > ; < a href = "../Functions/delta.htm" onclick = "onhyperlinkclick(this)" > DELTA< / a > ; < a href = "../Functions/erf.htm" onclick = "onhyperlinkclick(this)" > ERF< / a > ; < a href = "../Functions/erf-precise.htm" onclick = "onhyperlinkclick(this)" > ERF.PRECISE< / a > ; < a href = "../Functions/erfc.htm" onclick = "onhyperlinkclick(this)" > ERFC< / a > ; < a href = "../Functions/erfc-precise.htm" onclick = "onhyperlinkclick(this)" > ERFC.PRECISE< / a > ; < a href = "../Functions/gestep.htm" onclick = "onhyperlinkclick(this)" > GESTEP< / a > ; < a href = "../Functions/hex2bin.htm" onclick = "onhyperlinkclick(this)" > HEX2BIN< / a > ; < a href = "../Functions/hex2dec.htm" onclick = "onhyperlinkclick(this)" > HEX2DEC< / a > ; < a href = "../Functions/hex2oct.htm" onclick = "onhyperlinkclick(this)" > HEX2OCT< / a > ; < a href = "../Functions/imabs.htm" onclick = "onhyperlinkclick(this)" > IMABS< / a > ; < a href = "../Functions/imaginary.htm" onclick = "onhyperlinkclick(this)" > IMAGINARY< / a > ; < a href = "../Functions/imargument.htm" onclick = "onhyperlinkclick(this)" > IMARGUMENT< / a > ; < a href = "../Functions/imconjugate.htm" onclick = "onhyperlinkclick(this)" > IMCONJUGATE< / a > ; < a href = "../Functions/imcos.htm" onclick = "onhyperlinkclick(this)" > IMCOS< / a > ; < a href = "../Functions/imcosh.htm" onclick = "onhyperlinkclick(this)" > IMCOSH< / a > ; < a href = "../Functions/imcot.htm" onclick = "onhyperlinkclick(this)" > IMCOT< / a > ; < a href = "../Functions/imcsc.htm" onclick = "onhyperlinkclick(this)" > IMCSC< / a > ; < a href = "../Functions/imcsch.htm" onclick = "onhyperlinkclick(this)" > IMCSCH< / a > ; < a href = "../Functions/imdiv.htm" onclick = "onhyperlinkclick(this)" > IMDIV< / a > ; < a href = "../Functions/imexp.htm" onclick = "onhyperlinkclick(this)" > IMEXP< / a > ; < a href = "../Functions/imln.htm" onclick = "onhyperlinkclick(this)" > IMLN< / a > ; < a href = "../Functions/imlog10.htm" onclick = "onhyperlinkclick(this)" > IMLOG10< / a > ; < a href = "../Functions/imlog2.htm" onclick = "onhyperlinkclick(this)" > IMLOG2< / a > ; < a href = "../Functions/impower.htm" onclick = "onhyperlinkclick(this)" > IMPOWER< / a > ; < a href = "../Functions/improduct.htm" onclick = "onhyperlinkclick(this)" > IMPRODUCT< / a > ; < a href = "../Functions/imreal.htm" onclick = "onhyperlinkclick(this)" > IMREAL< / a > ; < a href = "../Functions/imsec.htm" onclick = "onhyperlinkclick(this)" > IMSEC< / a > ; < a href = "../Functions/imsech.htm" onclick = "onhyperlinkclick(this)" > IMSECH< / a > ; < a href = "../Functions/imsin.htm" onclick = "onhyperlinkclick(this)" > IMSIN< / a > ; < a href = "../Functions/imsinh.htm" onclick = "onhyperlinkclick(this)" > IMSINH< / a > ; < a href = "../Functions/imsqrt.htm" onclick = "onhyperlinkclick(this)" > IMSQRT< / a > ; < a href = "../Functions/imsub.htm" onclick = "onhyperlinkclick(this)" > IMSUB< / a > ; < a href = "../Functions/imsum.htm" onclick = "onhyperlinkclick(this)" > IMSUM< / a > ; < a href = "../Functions/imtan.htm" onclick = "onhyperlinkclick(this)" > IMTAN< / a > ; < a href = "../Functions/oct2bin.htm" onclick = "onhyperlinkclick(this
< / tr >
< tr >
< td > Fonctions de base de données< / td >
< td > Sont utilisés pour effectuer des calculs sur les valeurs dans un certain champ de la base de données qui correspondent aux critères spécifiés.< / td >
< td > < a href = "../Functions/daverage.htm" onclick = "onhyperlinkclick(this)" > DAVERAGE< / a > ; < a href = "../Functions/dcount.htm" onclick = "onhyperlinkclick(this)" > DCOUNT< / a > ; < a href = "../Functions/dcounta.htm" onclick = "onhyperlinkclick(this)" > DCOUNTA< / a > ; < a href = "../Functions/dget.htm" onclick = "onhyperlinkclick(this)" > DGET< / a > ; < a href = "../Functions/dmax.htm" onclick = "onhyperlinkclick(this)" > DMAX< / a > ; < a href = "../Functions/dmin.htm" onclick = "onhyperlinkclick(this)" > DMIN< / a > ; < a href = "../Functions/dproduct.htm" onclick = "onhyperlinkclick(this)" > DPRODUCT< / a > ; < a href = "../Functions/dstdev.htm" onclick = "onhyperlinkclick(this)" > DSTDEV< / a > ; < a href = "../Functions/dstdevp.htm" onclick = "onhyperlinkclick(this)" > DSTDEVP< / a > ; < a href = "../Functions/dsum.htm" onclick = "onhyperlinkclick(this)" > DSUM< / a > ; < a href = "../Functions/dvar.htm" onclick = "onhyperlinkclick(this)" > DVAR< / a > ; < a href = "../Functions/dvarp.htm" onclick = "onhyperlinkclick(this)" > DVARP< / a > < / td >
< / tr >
< tr >
< td > Fonctions d’ information< / td >
< td > Servent à vous donner les informations sur les données de la cellule sélectionnée ou une plage de cellules.< / td >
< td > < a href = "../Functions/error.type.htm" onclick = "onhyperlinkclick(this)" > ERROR.TYPE< / a > ; < a href = "../Functions/isblank.htm" onclick = "onhyperlinkclick(this)" > ISBLANK< / a > ; < a href = "../Functions/iserr.htm" onclick = "onhyperlinkclick(this)" > ISERR< / a > ; < a href = "../Functions/iserror.htm" onclick = "onhyperlinkclick(this)" > ISERROR< / a > ; < a href = "../Functions/iseven.htm" onclick = "onhyperlinkclick(this)" > ISEVEN< / a > ; < a href = "../Functions/isformula.htm" onclick = "onhyperlinkclick(this)" > ISFORMULA< / a > ; < a href = "../Functions/islogical.htm" onclick = "onhyperlinkclick(this)" > ISLOGICAL< / a > ; < a href = "../Functions/isna.htm" onclick = "onhyperlinkclick(this)" > ISNA< / a > ; < a href = "../Functions/isnontext.htm" onclick = "onhyperlinkclick(this)" > ISNONTEXT< / a > ; < a href = "../Functions/isnumber.htm" onclick = "onhyperlinkclick(this)" > ISNUMBER< / a > ; < a href = "../Functions/isodd.htm" onclick = "onhyperlinkclick(this)" > ISODD< / a > ; < a href = "../Functions/isref.htm" onclick = "onhyperlinkclick(this)" > ISREF< / a > ; < a href = "../Functions/istext.htm" onclick = "onhyperlinkclick(this)" > ISTEXT< / a > ; < a href = "../Functions/n.htm" onclick = "onhyperlinkclick(this)" > N< / a > ; < a href = "../Functions/na.htm" onclick = "onhyperlinkclick(this)" > NA< / a > ; < a href = "../Functions/sheet.htm" onclick = "onhyperlinkclick(this)" > SHEET< / a > ; < a href = "../Functions/sheets.htm" onclick = "onhyperlinkclick(this)" > SHEETS< / a > ; < a href = "../Functions/type.htm" onclick = "onhyperlinkclick(this)" > TYPE< / a > < / td >
< / tr >
< tr >
< td > Fonctions logiques< / td >
< td > Servent uniquement à vous donner une réponse VRAI ou FAUX.< / td >
< td > < a href = "../Functions/and.htm" onclick = "onhyperlinkclick(this)" > AND< / a > ; < a href = "../Functions/false.htm" onclick = "onhyperlinkclick(this)" > FALSE< / a > ; < a href = "../Functions/if.htm" onclick = "onhyperlinkclick(this)" > IF< / a > ; < a href = "../Functions/iferror.htm" onclick = "onhyperlinkclick(this)" > IFERROR< / a > ; < a href = "../Functions/ifna.htm" onclick = "onhyperlinkclick(this)" > IFNA< / a > ; < a href = "../Functions/not.htm" onclick = "onhyperlinkclick(this)" > NOT< / a > ; < a href = "../Functions/or.htm" onclick = "onhyperlinkclick(this)" > OR< / a > ; < a href = "../Functions/switch.htm" onclick = "onhyperlinkclick(this)" > SWITCH< / a > ; < a href = "../Functions/true.htm" onclick = "onhyperlinkclick(this)" > TRUE< / a > ; < a href = "../Functions/xor.htm" onclick = "onhyperlinkclick(this)" > XOR< / a > < / td >
< / tr >
< / table >
2016-03-11 00:48:53 +00:00
< / div >
< / body >
< / html >