If each row is one order, then you can make a table with a row of product id and then in the values are the count of any other column (essentially taking the count of orders). Then you can sort descending by order count.
To solve my problem, I created a parameter to filter the item ID that I would like to look for in the order ID, then another parameter showed me only the order ID that contained the item ID that I wanted to consult.
In a table I filtered the items by the related orders ID and with an exclusion filter removed the item I was looking for.
Done, a list of best sellers together with the selected item filtered from highest to lowest.