diff --git a/src/components/SelectionList/Search/ReportListItem.tsx b/src/components/SelectionList/Search/ReportListItem.tsx index 37bbe66670f9..f9e8e1951d9a 100644 --- a/src/components/SelectionList/Search/ReportListItem.tsx +++ b/src/components/SelectionList/Search/ReportListItem.tsx @@ -32,10 +32,17 @@ type ReportCellProps = { function TotalCell({showTooltip, isLargeScreenWidth, reportItem}: ReportCellProps) { const styles = useThemeStyles(); + let total = reportItem?.total ?? 0; + + // Only invert non-zero values otherwise we'll end up with -0.00 + if (total) { + total *= reportItem?.type === CONST.REPORT.TYPE.EXPENSE ? -1 : 1; + } + return ( );