Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Average Discount Percentage = AVERAGE('OrderDetails'[Discount] / 'OrderDetails'[Quantity])
THIS GAVE AN ERROR that says the parameter is not the correct type whenever i put the this section"/ 'OrderDetails'[Quantity])"
please assist on how to reolve this
Hi @Anonymous
AVERAGE formula only works for one column. I don't know what you're trying to achieve but you can do, for instance:
Average Discount Percentage = AVERAGE('OrderDetails'[Discount]) / AVERAGE('OrderDetails'[Quantity])
or
Average Discount Percentage = AVERAGEX('OrderDetails', DIVIDE('OrderDetails'[Discount], 'OrderDetails'[Quantity],0))