diff --git a/packages/loot-core/src/server/accounts/export-to-csv.ts b/packages/loot-core/src/server/accounts/export-to-csv.ts
index 6d9dd432b7e050f1b00e067bce12b32ece6fc853..7b8dda5af4ade5c4d5077c18936afee1b85a76cc 100644
--- a/packages/loot-core/src/server/accounts/export-to-csv.ts
+++ b/packages/loot-core/src/server/accounts/export-to-csv.ts
@@ -66,6 +66,8 @@ export async function exportQueryToCSV(query) {
         { Payee: 'payee.name' },
         { ParentId: 'parent_id' },
         { IsParent: 'is_parent' },
+        { IsChild: 'is_child' },
+        { SortOrder: 'sort_order' },
         { Notes: 'notes' },
         { Category: 'category.name' },
         { Amount: 'amount' },
@@ -75,25 +77,46 @@ export async function exportQueryToCSV(query) {
       .options({ splits: 'all' }),
   );
 
-  const parentsPayees = new Map();
+  // initialize a map to allow splits to have correct number of split from
+  const parentsChildCount: Map<number, number> = new Map();
+  const childSplitOrder: Map<number, number> = new Map();
+
+  // find children, their order, and total # siblings
   for (const trans of transactions) {
-    if (trans.IsParent) {
-      parentsPayees.set(trans.Id, trans.Payee);
+    if (trans.IsChild) {
+      let childNumber = parentsChildCount.get(trans.ParentId) || 0;
+      childNumber++;
+      childSplitOrder.set(trans.Id, childNumber);
+      parentsChildCount.set(trans.ParentId, childNumber);
     }
   }
 
-  // filter out any parent transactions
-  const noParents = transactions.filter(t => !t.IsParent);
-
-  // map final properties for export and grab the payee for splits from their parent transaction
-  const transactionsForExport = noParents.map(trans => {
+  // map final properties for export and grab the child count for splits from their parent transaction
+  const transactionsForExport = transactions.map(trans => {
     return {
       Account: trans.Account,
       Date: trans.Date,
-      Payee: trans.ParentId ? parentsPayees.get(trans.ParentId) : trans.Payee,
-      Notes: trans.Notes,
+      Payee: trans.Payee,
+      Notes: trans.IsParent
+        ? '(SPLIT INTO ' +
+          parentsChildCount.get(trans.Id) +
+          ') ' +
+          (trans.Notes || '')
+        : trans.IsChild
+          ? '(SPLIT ' +
+            childSplitOrder.get(trans.Id) +
+            ' OF ' +
+            parentsChildCount.get(trans.ParentId) +
+            ') ' +
+            (trans.Notes || '')
+          : trans.Notes,
       Category: trans.Category,
-      Amount: trans.Amount == null ? 0 : integerToAmount(trans.Amount),
+      Amount: trans.IsParent
+        ? 0
+        : trans.Amount == null
+          ? 0
+          : integerToAmount(trans.Amount),
+      Split_Amount: trans.IsParent ? integerToAmount(trans.Amount) : 0,
       Cleared:
         trans.Reconciled === true
           ? 'Reconciled'
diff --git a/upcoming-release-notes/2973.md b/upcoming-release-notes/2973.md
new file mode 100644
index 0000000000000000000000000000000000000000..6729b84423a0acdb642fbcedbb3ffd35d5233c05
--- /dev/null
+++ b/upcoming-release-notes/2973.md
@@ -0,0 +1,6 @@
+---
+category: Bugfix
+authors: [wdpk]
+---
+
+Fix exporting split transactions to CSV by including top-line transactions and noting the split.