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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

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...

Anonymous
Not applicable

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

Anonymous
Not applicable

Hello

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

 

Thanks a lot

Hi, @Anonymous 

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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