Hi everyone,
hope I can get some help here: I have some kind of similar problem like this guy:
I have full control about an html-table that needs to be imported (and updated) into LO Calc.
The table is very simple accounting stuff. But I just can’t make it work to detect the currency.
I can not use a helper table as table length his varying a lot.
Values are correctly formatted (German style with a comma) in the html and also in Calc. They are correctly identified as numbers (align right) but the currency symbol is missing and i am missing the second zero (14,10 € → 14,1)
I tried english formatting, and some other wierd stuff with html tags and styles too. Currency at the beginning, at the end. Maybe I am to stupid to see the obvious?
As I must do sum in the LO file, it is curcial that it is correctly shown as a € currency (red color is not important)
Version 7.3.7.2
Minimum (not) working example to be imported:
<!DOCTYPE html>
<html>
<body>
<table style="font-family: Liberation Sans;">
<tr>
<th></th>
<th><font face="Liberation Sans">Notiz/Name</font></th>
<th><font face="Liberation Sans">Datum</font></th>
<th><font face="Liberation Sans">Betrag</font></th>
<th><font face="Liberation Sans">Distanz</font></th>
<th></th>
</tr>
<tr>
<td><a href="/someref"> </a></td>
<td>
<font face="Liberation Sans">
Some test</font><br><font face="Liberation Sans">2nd row
</font>
</td>
<td><font face="Liberation Sans">12.10.2020</font></td>
<td><font face="Liberation Sans">14,10 €</font></td>
<td><font face="Liberation Sans">
47
</font></td>
<td><font face="Liberation Sans">km</font></td>
</tr>
</table>
</body>
</html>