Forum Discussion
MAP
2 years agoFrequent Visitor
Zero counts
I have stock exchange data in power bi.i have a measure that calculates whether closing price is maximum or not.if closing price is maximum this measure gives to the answer equall to zero.Now I want to count those zero in a separate measures
You could do this using SUMX and VALUES. First you'll need to understand what groupings will let you check a zero for. Maybe its a particular stockcode. Here is an example:
Zero Count = SUMX( VALUES('Stocks'[Stock Code]), IF([Closing price max check] = 0, 1, 0) )
2 Replies
- RossEdwardsSolution Sage
You could do this using SUMX and VALUES. First you'll need to understand what groupings will let you check a zero for. Maybe its a particular stockcode. Here is an example:
Zero Count = SUMX( VALUES('Stocks'[Stock Code]), IF([Closing price max check] = 0, 1, 0) ) - MAPFrequent Visitor
Thank You Sir