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 - I have a single value card in a report - if I have multiple orders when I select a customer it by default displays the first one. I'd like the value on that card to count the number of orders and if it's greater than 1 to display 'Multiple orders' and if there is only 1 order matching the filters to display the order number.
I have
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but please try the below whether it suits your requirement.
Measure =
IF (
COUNT ( Order[OrderNumber] ) > 1,
"Multiple Orders",
MAX ( Order[OrderNumber] )
)
Hi,
Here is an example on how to do this:
Data:
Dax:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Thanks to Both of you for helping out - much appreciated 😄
Hi,
Here is an example on how to do this:
Data:
Dax:
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Hi,
I am not sure how your datamodel looks like, but please try the below whether it suits your requirement.
Measure =
IF (
COUNT ( Order[OrderNumber] ) > 1,
"Multiple Orders",
MAX ( Order[OrderNumber] )
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |