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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
reynold522
Helper II
Helper II

modify measure to get default value 0

count of deepdischarge = SUMX ( VALUES ( 'Table'[IoT device ID] ), IF ( [Deep Discharge hour]> 1, 1 ) )
 
this code will have value blank. 
 
how Can I get value 0 as default if none of IoT device has deep discharge
 
Thanks in advance
 
Best regards
 
1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

try like

count of deepdischarge =

VAR _value= SUMX ( VALUES ( 'Table'[IoT device ID] ), IF ( [Deep Discharge hour]> 11 ) )

RETURN 

IF( _value=BLANK(), 0, _value )

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @reynold522 

you can use

count of deepdischarge = SUMX ( VALUES ( 'Table'[IoT device ID] ), IF ( [Deep Discharge hour]> 1, 1, 0 ) )

FreemanZ
Super User
Super User

try like

count of deepdischarge =

VAR _value= SUMX ( VALUES ( 'Table'[IoT device ID] ), IF ( [Deep Discharge hour]> 11 ) )

RETURN 

IF( _value=BLANK(), 0, _value )

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.