diff --git a/officecfg/registry/data/org/openoffice/Office/Calc.xcu b/officecfg/registry/data/org/openoffice/Office/Calc.xcu
index 190766ec3c42..a62d06512704 100644
--- a/officecfg/registry/data/org/openoffice/Office/Calc.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/Calc.xcu
@@ -217,6 +217,17 @@
0.702804
+
+
+ EUR
+
+
+ LTL
+
+
+ 3.45280
+
+
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index e695d57345e7..ac6d71e905a5 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -2795,7 +2795,8 @@ static bool lclConvertMoney( const OUString& aSearchUnit, double& rfRate, int& r
{ "CYP", 0.585274, 2 },
{ "SKK", 30.1260, 2 },
{ "EEK", 15.6466, 2 },
- { "LVL", 0.702804, 2 }
+ { "LVL", 0.702804, 2 },
+ { "LTL", 3.45280, 2 }
};
static const size_t nConversionCount = sizeof( aConvertTable ) / sizeof( aConvertTable[0] );