Forum Discussion
mahsan_ojaghian
Helper I
4 years agocreate a measure that converts negative values to zero
Hi Guys. I'm really Confused!!! I have a table like this: ITEM_CODE NEED INVENTORY_QTY MISS_0 ITM_1 100 50 50 ITM_2 200 10 190 ITM_3 35 100 -65 I want to create a mea...
- 4 years ago
Hi mahsan_ojaghian ,
Try the following measure:
Only Positive = SUMX( FILTER(Table, Table[Miss_0] > 0), Table[Miss_0])
MFelix
Super User
4 years agoHi mahsan_ojaghian ,
Try the following measure:
Only Positive = SUMX( FILTER(Table, Table[Miss_0] > 0), Table[Miss_0])