Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello,
I am trying to convert excel report to power bi report,
=IFERROR(AVERAGEIF('Historical '!$A$3:$X$100687,'Current Year '!$A2,'Historical '!$X$3:$X$100687),"No AUP ")
Can anyone help me?
Thanks
Solved! Go to Solution.
Hi @tejapowerbi123,
There is no such a corresponding symbol that works like $ to specify a constant cell value in Power BI. We should specify a column name and hardcode the actual value inside a cell in DAX formula. The above excel formula can be converted to DAX similar to below:
New Column =
IFERROR (
CALCULATE (
AVERAGE ( TableName[Value] ),
FILTER ( TableName, <"Filter Expression"> )
),
"No AUP"
)
You should replace the underlined part with the actual filter context, like TableName[Column1]="Category1" or TableName[Column1]=TableName[Column2]
For more advice, please share sample data and show us the desired result which you have got in Excel. How to Get Your Question Answered Quickly
Best regards,
Yuliana Gu
Hi @tejapowerbi123,
There is no such a corresponding symbol that works like $ to specify a constant cell value in Power BI. We should specify a column name and hardcode the actual value inside a cell in DAX formula. The above excel formula can be converted to DAX similar to below:
New Column =
IFERROR (
CALCULATE (
AVERAGE ( TableName[Value] ),
FILTER ( TableName, <"Filter Expression"> )
),
"No AUP"
)
You should replace the underlined part with the actual filter context, like TableName[Column1]="Category1" or TableName[Column1]=TableName[Column2]
For more advice, please share sample data and show us the desired result which you have got in Excel. How to Get Your Question Answered Quickly
Best regards,
Yuliana Gu
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.