Hi Chris, sorry for the delay in getting back to you here - From the details provided, it seems this is expected behavior when removing Quoted Description: the report grain rolls up from line-level to Quote Request level, and your App Discount % is being aggregated as a SUM of line percentages (e.g., 35% + 34% + … = 351%).
Best practice is to not sum percentages. Instead, define the discount % as a ratio of totals (weighted %) so it aggregates correctly at any grain. You metric would look something like this:
SSELECT SUM({fact/app_discount_amount}) / SUM({fact/quoted_rrp})
WHERE {fact/app_discount_amount} > 0
I believe this should return the correct % whether or not Quoted Description is included.