Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All!
I am relativly new to Power Bi and Im failing on such a simple task. Hopefully someone can help me with that.
I have a table the following table:
Sales ID | Payment Method |
1 | cash |
1 | card |
2 | cash |
2 | paypal |
3 | paypal |
I tried to create a measure which calculates the number of payments with multiple payment methods when paypal is used.
So the result in this case would be that there is one payment with multiple methods when one is paypal (Sales ID 2).
I tried to get the result in multiple ways. One was to use the Summarize function to group the table by sales id and than create a row which retrieves the number of payment methods used and filter that with payment method = paypal.
Either way I did not get it done to create the measure. I hope someone of you might have a good solution for this.
Thanks in advance!
Solved! Go to Solution.
Try this:
COUNTROWS (
FILTER (
ADDCOLUMNS (
VALUES ( Table1[Sales ID ] ),
"Methods", CALCULATE ( DISTINCTCOUNT ( Table1[Payment Method] ) ),
"UsedPaypal", "paypal" IN CALCULATETABLE ( VALUES ( Table1[Payment Method] ) )
),
[Methods] > 1 && [UsedPaypal]
)
)
Try this:
COUNTROWS (
FILTER (
ADDCOLUMNS (
VALUES ( Table1[Sales ID ] ),
"Methods", CALCULATE ( DISTINCTCOUNT ( Table1[Payment Method] ) ),
"UsedPaypal", "paypal" IN CALCULATETABLE ( VALUES ( Table1[Payment Method] ) )
),
[Methods] > 1 && [UsedPaypal]
)
)
Hello Alexis. Thank you so so much!
It worked perfectly.
User | Count |
---|---|
25 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
25 | |
12 | |
11 | |
10 | |
6 |