diff --git a/ApplicationCode/FileInterface/RifEclipseSummaryAddress.cpp b/ApplicationCode/FileInterface/RifEclipseSummaryAddress.cpp index c69ae81a5f..c8597499d4 100644 --- a/ApplicationCode/FileInterface/RifEclipseSummaryAddress.cpp +++ b/ApplicationCode/FileInterface/RifEclipseSummaryAddress.cpp @@ -810,6 +810,13 @@ bool RifEclipseSummaryAddress::hasAccumulatedData() const } QString qBaseName = baseQuantityName( quantityForInspection ); + + if ( qBaseName.endsWith( "WCT" ) || qBaseName.endsWith( "WCTH" ) ) + { + // https://github.com/OPM/ResInsight/issues/5808 + return false; + } + return qBaseName.endsWith( "T" ) || qBaseName.endsWith( "TH" ); }