Hi,
I have a measure that calculates volume for a particular date by SAP ID - Measure1.
I want to use Measure1 to calculate the total count of SAP ID with volume >0 to create another measure.
I tried using
Measure2=
Measure1=var m1=MAX(date_test[year_month])
var Currentdate=DATE(year(m1),MONTH(m1)-12,DAY(m1))
var Previousdate=DATE(year(Currentdate),MONTH(Currentdate)-12,DAY(Currentdate))
var Result = CALCULATE(
SUM('Datas Vol'[Total Volume]),FILTER(Dates,Dates[date]>=Previousdate && Dates[date]<Currentdate))
return Result
Hi @Anonymous ,
Referring to the example above, you can try to create such a measure for your needs:
Measure2 =
VAR t =
CALCULATE (
DISTINCTCOUNT('Table'[Colunmname]),
FILTER (
ALLSELECTED('Table'),
[Measure 1] > 2
)
)
RETURN
IF ( [Measure 1] > 2, t, 0 )
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
Try:
Count = CALCULATE(DISTINCTCOUNT(table [SAP ID]), FILTER(Table, [Measure1> 0))
Proud to be a Super User!
Paul on Linkedin.
for some reason countrow is not working
@Anonymous
Apologies since I saw you wanted the count of unique values. I changed the meaures to:
Count = CALCULATE(
DISTINCTCOUNT(Table [SAP ID]),
FILTER(Table, [Measure1> 0)
)
Proud to be a Super User!
Paul on Linkedin.
@Anonymous not fully clear what is the ask here, post sample data and the expected output to get your answer quickly.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
ID Volume
1 10
2 20
3 30
4 8
5 7
6 5
7 10
I need to find the sum of the Volume where Volume => 10
Please note Volume here is a measure
User | Count |
---|---|
106 | |
82 | |
72 | |
48 | |
48 |
User | Count |
---|---|
157 | |
89 | |
81 | |
69 | |
67 |