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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! 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] )
)

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.