diff --git a/pyaedt/modules/PostProcessor.py b/pyaedt/modules/PostProcessor.py index 530c85f70f6..e21b837fcd3 100644 --- a/pyaedt/modules/PostProcessor.py +++ b/pyaedt/modules/PostProcessor.py @@ -5408,7 +5408,7 @@ def get_field_summary_data(self, setup=None, variation=None, intrinsics="", pand if pd is None: raise ImportError("pandas package is needed.") df = pd.DataFrame.from_dict(out_dict) - for col in ["Min", "Max", "Mean", "Stdev", "Area/Volume", "Total"]: + for col in ["Min", "Max", "Mean", "Stdev", "Total"]: if col in df.columns: df[col] = df[col].astype(float) return df