diff --git a/include/ListView/ListViewController.php b/include/ListView/ListViewController.php
index 01de408f8886c2cdc3ff261eaf89dc8fcf2700de..cfc9d96551b13895905e52edcddaaac289efda52 100644
--- a/include/ListView/ListViewController.php
+++ b/include/ListView/ListViewController.php
@@ -405,6 +405,10 @@ class ListViewController {
 							}
 						}
 					}
+				} elseif ($fieldDataType == 'double') {
+					if ($value) {
+						$value = CurrencyField::convertToUserFormat($value, null, true);
+					}
 				} elseif($fieldDataType == 'url') {
 					$matchPattern = "^[\w]+:\/\/^";
 					preg_match($matchPattern, $rawValue, $matches);