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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

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
October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.