Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Formula not display correct result

Hi,

Please see below formula,It gives me the correct result but result display is not correct.

When below forumla condition does not meet it should display 0 in a current d rows but it is showing totally empty rows.CURRENT D column data type is decimal with currency format.

CURRENT D = IFERROR(CALCULATE(AVERAGE('MS'[Valid Price]),

                     FILTER(ALL('MS '[REGION]),'MS '[REGION]="AMERICAS"),

                     FILTER('MS ','MS '[Unique ]=RELATED('MS  Supporting Column'[Pricing Id])),

                     FILTER('MS ','MS '[Contract Star]="Y"),

                     FILTER('MS ','MS '[Contract End]="N")),0)

community.png

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey,
I'm not sure, what kind of error you try to catch, AVERAGE(..., ...) returns BLANK() if the application of the filter from the CALCULATE filter out all rows in the current FILTER context.

 

Maybe you should give ISBLANK() a try like so:

var thevalue = CALCULATE(<your CALCULATE(...)>)
return
IF(ISBLANK(thevalue), 0, thevalue)

If this does not help, maybe you can provide a pbix file with some sample data, upload the pbix to onedrive or dropbox and share the link.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

3 REPLIES 3
TomMartens
Super User
Super User

Hey,
I'm not sure, what kind of error you try to catch, AVERAGE(..., ...) returns BLANK() if the application of the filter from the CALCULATE filter out all rows in the current FILTER context.

 

Maybe you should give ISBLANK() a try like so:

var thevalue = CALCULATE(<your CALCULATE(...)>)
return
IF(ISBLANK(thevalue), 0, thevalue)

If this does not help, maybe you can provide a pbix file with some sample data, upload the pbix to onedrive or dropbox and share the link.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany
Anonymous
Not applicable

Hi Tom,

Thank you so much it is working pefectly fine .

You can see the result below.

tom.png

Perfect!


Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.