Documentation/Calc Functions/EUROKONVERTER

    From The Document Foundation Wiki
    This page is a translated version of the page Documentation/Calc Functions/EUROCONVERT and the translation is 2% complete.
    Outdated translations are marked like this.


    Funktionsnavn:

    EUROKONVERTER

    Kategori:

    Matematisk

    Resume:

    Konverterer valutaværdier mellem Euroen og diverse forældede europæiske nationale valutaer, med brug af faste rater fastsat af Europa-kommissionen.

    Syntaks:

    EUROKONVERTER(Value; FromCurrency; ToCurrency [; FullPrecision [; TriangulationPrecision]])

    Returnerer:

    Returnerer the en valutaværdi i form af Til_værdi for input, der er givet i form af Fra_værdi.

    Argumenter:

    Værdi er beløbet i den valuta, der skal konverteres.

    Fra_valuta og Til_valuta er valutaenheder, der konverteres henholdsvis fra og til. De skal være tekst og de officielle forkortelser for valutaerne (fx. "EUR"). Disse rater (vist pr. Euro) er fastsat af Europakommissionen.

    ToCurrency is a text string, or a reference to a cell containing a text string, that specifies the currency to be converted to. One of 20 case-insensitive strings, as listed for the FromCurrency argument.

    Fuld_præcision (valgfri). Hvis udeladt eller Falsk, afrundes afrundes til Til_valutaens decimaler. Hvis Fuld_præcision er Sand, afrundes resultatet ikke.

    Triangulations_præcision (valgfri). Hvis Triangulations_præcision er givet og er >=3, afrundes det foreløbige resultat af en triangulær konvertering (valuta1, EUR, valuta2) til denne præcision. Hvis Triangulations_præcision er udeladt, afrundes det midlertidige resultat ikke. Også hvis Til_valuta er "EUR", bruges Triangulations_præcision, som om triangulation var nødvendig og der anvendtes konvertering fra EUR til EUR.

    • If any of Value, FullPrecision, or TriangulationPrecision are non-numeric, then EUROKONVERTER reports a #VÆRDI! error.
    • If either FromCurrency or ToCurrency is not one of the expected strings, then EUROKONVERTER reports an invalid argument error (Fejl:502).
    • If TriangulationPrecision is a non-integer value, then EUROKONVERTER truncates it by taken its floor value.
    • If the value of TriangulationPrecision is less than 3, then EUROKONVERTER reports an invalid argument error (Fejl:502).

    Yderligere oplysninger:

    De faste konverteringsrater oplistes herunder:

    Fra_valuta Til_valatu Rater Valuta Decimaler
    "EUR" "ATS" 13,7603 Østrigske Schilling 2
    "EUR" "BEF" 40,3399 Belgiske Franc 0
    "EUR" "DEM" 1,95583 Tyske Mark 2
    "EUR" "ESP" 166,386 Spanske Peseta 0
    "EUR" "FIM" 5,94573 Finske Markka 2
    "EUR" "FRF" 6,55957 Franske Franc 2
    "EUR" "IEP" 0,787564 Irske Pund 2
    "EUR" "ITL" 1936,27 Italienske Lira 0
    "EUR" "LUG" 40,3399 Luxembourg Franc 0
    "EUR" "NLG" 2,20371 Hollandske Gylden 2
    "EUR" "PTE" 200,482 Portugisiske Escudo 2
    "EUR" "GRD" 340,750 Græske Drachma 2
    "EUR" "SIT" 239,640 Sloveniske Tolar 2
    "EUR" "MTL" 0,429300 Maltesiske Lira 2
    "EUR" "CYP" 0,585274 Cypriotiske Pund 2
    "EUR" "SKK" 30,1260 Slovakisk Koruna 2
    "EUR" "EEK" 15,6466 Estiske Kroon 2
    "EUR" "LVL" 0,702804 Lettiske Lats 2
    "EUR" "LTL" 3,45280 Lituaiske Litas 2
    From To Rates To Currency Name Decimals
    "EUR" "ATS" 13,7603 Austrian schilling 2
    "EUR" "BEF" 40,3399 Belgian franc 0
    "EUR" "CYP" 0,585274 Cypriot pound 2
    "EUR" "DEM" 1,95583 German mark 2
    "EUR" "EEK" 15,6466 Estonian kroon 2
    "EUR" "ESP" 166,386 Spanish peseta 0
    "EUR" "FIM" 5,94573 Finnish markka 2
    "EUR" "FRF" 6,55957 French franc 2
    "EUR" "GRD" 340,750 Greek drachma 2
    "EUR" "IEP" 0,787564 Irish pound 2
    "EUR" "ITL" 1.936,27 Italian lira 0
    "EUR" "LTL" 3,45280 Lithuanian litas 2
    "EUR" "LUF" 40,3399 Luxembourg franc 0
    "EUR" "LVL" 0,702804 Latvian lats 2
    "EUR" "MTL" 0,429300 Maltese lira 2
    "EUR" "NLG" 2,20371 Dutch guilder 2
    "EUR" "PTE" 200,482 Portuguese escudo 2
    "EUR" "SIT" 239,640 Slovenian tolar 2
    "EUR" "SKK" 30,1260 Slovak koruna 2

    Eksempler:

    Formula Description Returns
    =EUROKONVERTER(100; "EUR"; "DEM") Converts 100 euros into German marks, using the default number of two decimal places for the German mark. 195,58
    =EUROKONVERTER(100; "ATS"; "EUR") Converts 100 Austrian schillings into euros, using the default number of two decimal places for the euro. 7,27
    =EUROKONVERTER(123,40; "ATS"; "BEF") Converts 123.40 Austrian schillings into Belgian francs, using the default number of zero decimal places for the Belgian franc. 362
    =EUROKONVERTER(123,40; "ATS"; "BEF"; SAND()) Converts 123.40 Austrian schillings into Belgian francs, using full precision. 361,761274100129
    =EUROKONVERTER(1,5; "LTL"; "LVL"; 1) Converts 1.5 Lithuanian litas into Luxembourg francs, using full precision. 0,305319161260426
    =EUROKONVERTER(D1; D2; D3; D4; D5) where cell D1 contains the number 1.5, cell D2 contains the string "LTL", cell D3 contains the string "LVL", cell D4 contains the number 1, and cell D5 contains the number 4. Converts 1.5 Lithuanian litas into Luxembourg francs, using full precision for the result but rounding the intermediate result of the triangular conversion to 4 places. Note that this change to the handling of the intermediate value gives a different end result compared to the previous example. 0,3052980576

    Beslægtede LibreOffice-funktioner:

    KONVERTER_OOO

    ODF standard:

    Tilsvarende Excel-funktioner:

    EUROCONVERT