Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have two tables Order Table and Returns Table, I want to calculate return rate using of DAX
@PBIBALU , Assume you have common dimensions like Date, Order, Geography , Article/Item , customer etc
You can create a new measure like
divide( sum(Return[Qty]), sum(Order[Order Qty]))
or
divide( Count(Return[Qty]), Count(Order[Order Qty]))
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
100 | |
93 | |
52 | |
50 | |
48 |