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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
carlovsky
Helper II
Helper II

Measure giving to every combination in the table

Hello

I'm facing a weird issue

 

I have a table grouped table at Order Level where I've throwed in a set of KPIs to analyze if a Order should be submitted in the system or not. Nothing to say till, I've added the following measure:

 

Order Status = 
VAR one_ = [1. % Order Value (100%)] -- Threshold 100%
VAR two_ = [2.  (0%)] -- Threshold 0%
VAR four_ = [4. ] --  Threshold >= 3%
VAR six_ = [6. ] -- Threshold <= 2%

RETURN 
 IF (
        one_ < 1
            || two_ > 0
            || four_ < 0.03
        "Declined",
        "Authorized"
    )

 Now Power BI is duplicating each Order by the number of Countries that we have in system(The order only exists on Ivory Coast)

carlovsky_0-1665178386585.png

Any idea of what might be happening? Without the Order Status, the Dashboard works great without any relationship issue.

 

Thanks

Diego

4 REPLIES 4
daXtreme
Solution Sage
Solution Sage

Looks like you've got missing relationships between some tables...

Hello,

No missing relationship.. Look below:

  • With just Country, Order Number and Measure 1(working 100%)

carlovsky_0-1665243870320.png

With the measure below that performs a logical condition based on Measure 1.

Order Status = 
VAR one_ = [1.] -- Threshold 100%
RETURN 
 IF (one_ < 1,"Declined","Authorized")

carlovsky_1-1665243974110.png

Any idea on what might be the root cause of this?

 

Thanks Diego

Hello

Any idea on how to resolve this cross join between non related variables?

 

Thanks a lot

Hi, @carlovsky 

You may need to take blank values into account, try the formula below if it works.

Order Status =
VAR one_ = [1.] -- Threshold 100%
RETURN
    IF ( one_ = BLANK (), BLANK (), IF ( one_ < 1, "Declined", "Authorized" ) )

Best Regards,
Community Support Team _ Eason

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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