This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello Community,
i am trying to created a calculated column and i am getting below error. Does any one able provide suggestion?
Error Message “Too many arguments were passed to the IFERROR function. The maximum argument count for the function is 2.”
delete after use = CALCULATE(IFERROR(AVERAGE([Valid Price]),
FILTER(Software Contracts',[RAW Unique Identifier]=Software Contracts'[AUP Pricing Identifier]),
FILTER('Software Contracts',[RAW Region]= 'Software Contracts',[ AUP SALES)),"no")
Solved! Go to Solution.
You've got all kinds of mismatching parenthesis and commas, but I think this might be closer to what you're after:
IFERROR (
CALCULATE (
AVERAGE ( [Valid Price] ),
FILTER (
'Software Contracts',
[RAW Unique Identifier] = 'Software Contracts'[AUP Pricing Identifier]
),
FILTER (
'Software Contracts',
[RAW Region] = 'Software Contracts'[ AUP SALES] )
),
"no"
)
You've got all kinds of mismatching parenthesis and commas, but I think this might be closer to what you're after:
IFERROR (
CALCULATE (
AVERAGE ( [Valid Price] ),
FILTER (
'Software Contracts',
[RAW Unique Identifier] = 'Software Contracts'[AUP Pricing Identifier]
),
FILTER (
'Software Contracts',
[RAW Region] = 'Software Contracts'[ AUP SALES] )
),
"no"
)
thank you so much Alexis.It works perfectly fine for me.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |