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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
PRI-123
Helper III
Helper III

Need help with blanks calculation measure in matrix table

Hi all, I am using these measures below:

 

ams measure = var a = DISTINCTCOUNT(AM[Exec_name])
return IF(ISBLANK(a),0,a)
 
wins measure AM table = var a = COUNT(AM[WIGS_Wins_Achieved])
return
IF(ISBLANK(a),0,a)
 
percentage am table = var a = DIVIDE(AM[wins measure AM table],SUM(AM[WIGS_Target]),0) * 100
return
IF(ISBLANK(a),0,a)
 
 
 
It is not calculating blanks at all. Below i am attaching a picture for the reference that the measures are not working properly. Is there a workaround for these measures? I want to show blank as 0 in my matrix table. Thanks in Advance.
 
PRI123_0-1667485139123.png

 

5 REPLIES 5
Jayee
Responsive Resident
Responsive Resident

Hi @PRI-123 ,

 

try this below measures adding 0 to your measure

ams measure = DISTINCTCOUNT(AM[Exec_name])+0

wins measure AM table = COUNT(AM[WIGS_Wins_Achieved])+0

percentage am table = DIVIDE(AM[wins measure AM table]+0,SUM(AM[WIGS_Target]),0) * 100

 

@Jayee Hi. tried them but still not working

Hi , @PRI-123 

For you question, can you share the .pbix file (without sensitive data) to us , so that we can help you better?

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

@v-yueyunzh-msft please tell me your mail id. I can share my sample file

Hi , @PRI-123 

You can upload your sample pbix file to the OneDrive, and then you can share the onrdrive link to us .

 

Best Regards,

Aniya Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors