The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to calculate the average units per month. The formula I have is
Measure = AVERAGEX(VALUES(Dates[Month], 'Shipped Sales Detail'[Units]))
I get the error message "too many arguments were passed to the VALUES function. The maximum argument count for the function is 1. Can someone assist? Thank you!
Solved! Go to Solution.
Hi @Anonymous ,
Please update the formula of Measure as below, the part with red font is updated one...
Measusre = AVERAGEX ( VALUES ( Dates[Month] ), 'Shipped Sales Detail'[Units] ) |
If the above one can't help you get your expected result, please provide some sample data(exclude sensitive data) and your expected result with backend logic and special examples. Thank you.
Best Regards
Hi @Anonymous ,
Please update the formula of Measure as below, the part with red font is updated one...
Measusre = AVERAGEX ( VALUES ( Dates[Month] ), 'Shipped Sales Detail'[Units] ) |
If the above one can't help you get your expected result, please provide some sample data(exclude sensitive data) and your expected result with backend logic and special examples. Thank you.
Best Regards
Hi @Anonymous
It because of ), try this:
Measure = AVERAGEX(VALUES(Dates[Month]), 'Shipped Sales Detail'[Units]))
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
20 | |
15 | |
14 | |
10 | |
7 |