Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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
Solved! Go to Solution.
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)
)
Thank You Sir
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)
)
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |