diff --git a/e2e/test/scenarios/joins/reproductions/23293-drill-through-implicit-join-add-remove-column.cy.spec.js b/e2e/test/scenarios/joins/reproductions/23293-drill-through-implicit-join-add-remove-column.cy.spec.js
new file mode 100644
index 0000000000000000000000000000000000000000..ec6db5e24658bd5aec1de3abe5bbe3039c8ef23b
--- /dev/null
+++ b/e2e/test/scenarios/joins/reproductions/23293-drill-through-implicit-join-add-remove-column.cy.spec.js
@@ -0,0 +1,96 @@
+import {
+  restore,
+  popover,
+  openOrdersTable,
+  visitDashboard,
+} from "e2e/support/helpers";
+import { SAMPLE_DATABASE } from "e2e/support/cypress_sample_database";
+
+const { ORDERS, PRODUCTS } = SAMPLE_DATABASE;
+
+describe("issue 23293", () => {
+  beforeEach(() => {
+    restore();
+    cy.signInAsAdmin();
+  });
+
+  it("should retain the filter when drilling through the dashboard card with implicitly added column (metabase#23293)", () => {
+    openOrdersTable();
+
+    cy.findByTestId("viz-settings-button").click();
+    modifyColumn("Product ID", "remove");
+    modifyColumn("Category", "add");
+    cy.wait("@dataset");
+
+    saveQuestion().then(
+      ({
+        response: {
+          body: { id },
+        },
+      }) => {
+        const questionDetails = {
+          query: {
+            "source-table": `card__${id}`,
+            aggregation: [["count"]],
+            breakout: [
+              [
+                "field",
+                PRODUCTS.CATEGORY,
+                {
+                  "source-field": ORDERS.PRODUCT_ID,
+                },
+              ],
+            ],
+          },
+          display: "bar",
+        };
+
+        cy.createQuestionAndDashboard({ questionDetails }).then(
+          ({ body: { dashboard_id } }) => {
+            visitDashboard(dashboard_id);
+          },
+        );
+
+        cy.get(".bar").first().realClick();
+        popover()
+          .findByText(/^See these/)
+          .click();
+
+        cy.findByTestId("qb-filters-panel").should(
+          "contain",
+          "Product → Category is Doohickey",
+        );
+        cy.findAllByTestId("header-cell")
+          .last()
+          .should("have.text", "Product → Category");
+
+        cy.findAllByRole("grid")
+          .last()
+          .as("tableResults")
+          .should("contain", "Doohickey")
+          .and("not.contain", "Gizmo");
+      },
+    );
+  });
+});
+
+/**
+ * @param {string} columnName
+ * @param {("add"|"remove")} action
+ */
+function modifyColumn(columnName, action) {
+  const icon = action === "add" ? "add" : "eye_outline";
+  const iconSelector = `.Icon-${icon}`;
+  const columnSeletor = `draggable-item-${columnName}`;
+  cy.findByTestId(columnSeletor).find(iconSelector).click();
+}
+
+function saveQuestion() {
+  cy.intercept("POST", "/api/card").as("saveQuestion");
+
+  cy.findByTestId("qb-header-action-panel").findByText("Save").click();
+  cy.get(".Modal").button("Save").click();
+  cy.get(".Modal").button("Not now").click();
+
+  return cy.wait("@saveQuestion");
+}