Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
DougBee
New Member

If Command Issues.... Bit of a newbie

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 

 

Measure=IF(COUNT(Order[OrderNumber])>1, "Multiple Orders", Order[OrderNumber] )
 
It doesnt work and I can see the only options seem to be measures not dimensions - is there a way to force it to select the measure value?
 
Thanks
2 ACCEPTED SOLUTIONS
Jihwan_Kim
Super User
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] )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

ValtteriN
Super User
Super User

Hi, 

Here is an example on how to do this:

Data:

ValtteriN_0-1666018325929.png


Dax:

Order num or multiple = IF(COUNT('Table (9)'[Order])>1,"Multiple",MAX('Table (9)'[Order]))

You were close just add MAX, MIN or SELECTEDMEASURE


End result:
ValtteriN_1-1666018484621.png

 

ValtteriN_2-1666018503129.png

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/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
DougBee
New Member

Thanks to Both of you for helping out - much appreciated 😄 

ValtteriN
Super User
Super User

Hi, 

Here is an example on how to do this:

Data:

ValtteriN_0-1666018325929.png


Dax:

Order num or multiple = IF(COUNT('Table (9)'[Order])>1,"Multiple",MAX('Table (9)'[Order]))

You were close just add MAX, MIN or SELECTEDMEASURE


End result:
ValtteriN_1-1666018484621.png

 

ValtteriN_2-1666018503129.png

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/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Jihwan_Kim
Super User
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] )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.