diff --git a/docs/source/release/v3.14.0/muon.rst b/docs/source/release/v3.14.0/muon.rst
index ba294f4706eb4fb7b4e3a54aa6b53915027612db..ddde7cdbdb6ac0c7675e6b1e041fbf5948775417 100644
--- a/docs/source/release/v3.14.0/muon.rst
+++ b/docs/source/release/v3.14.0/muon.rst
@@ -9,4 +9,27 @@ MuSR Changes
     putting new features at the top of the section, followed by
     improvements, followed by bug fixes.
 
+  
+Interface
+---------
+
+Improvements
+############
+
+Bugfixes
+########
+- Results table now includes all logs that are common to all of the loaded files.
+
+Algorithms
+----------
+
+New
+###
+
+Improvements
+############
+
+Bugfixes
+########
+	
 :ref:`Release 3.14.0 <v3.14.0>`
diff --git a/qt/scientific_interfaces/Muon/MuonAnalysisResultTableTab.cpp b/qt/scientific_interfaces/Muon/MuonAnalysisResultTableTab.cpp
index e5b520c4e7e78f1c9d054037d44e5d5fbcdc4078..b2654f4694844391c3d6fdb194e97ae473a41f47 100644
--- a/qt/scientific_interfaces/Muon/MuonAnalysisResultTableTab.cpp
+++ b/qt/scientific_interfaces/Muon/MuonAnalysisResultTableTab.cpp
@@ -530,21 +530,20 @@ void MuonAnalysisResultTableTab::populateLogsAndValues(
       // Check if is a timeseries log
       if (TimeSeriesProperty<double> *log =
               dynamic_cast<TimeSeriesProperty<double> *>(prop)) {
-
+		  QString logName = QString::fromStdString(prop->name());
+		  std::string fdsadf = logName.toStdString();
         auto mylog = log->clone();
         if (foundRunning) {
           mylog->filterWith(runningLog);
         }
         QString logFile(QFileInfo(prop->name().c_str()).fileName());
         auto time_ave = mylog->timeAverageValue(); // get the time average
-        if (time_ave != 0) {
-          // Return average
-          wsLogValues[logFile] = time_ave;
-        }
+        // Return average
+        wsLogValues[logFile] = time_ave;
       } else // Should be a non-timeseries one
       {
         QString logName = QString::fromStdString(prop->name());
-
+		std::string fdsadf = logName.toStdString();
         // Check if we should display it
         if (NON_TIMESERIES_LOGS.contains(logName)) {