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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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] )
)


Microsoft MVP



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.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule 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] )
)


Microsoft MVP



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.




LinkedInVisit my LinkedIn page




Outlook BookingSchedule a short Teams meeting to discuss your question



Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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