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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 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.