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
Anonymous
Not applicable

DAX error

Hi All,

 

I have appended the query multiple times and I did not seem to have any issue, until now.

Megha3012_0-1634748697620.png

Thats the formula I used, I am not sure what the problem is.

There are no duplicate values. I double checked and it is still throwing error.

Any help is appreciated!

Thank you!

 

4 REPLIES 4
AlexisOlson
Super User
Super User

The error implies that 'Part File' contains multiple rows where 'Part File'[PartPlantbyYearWeekNum] is the same but has different values of [OrderMinimumQty].

 

Try defining a calculated table like this to try finding where this occurs:

Summary =
FILTER (
    SUMMARIZE (
        'Part File',
        'Part File'[PartPlantbyYearWeekNum],
        "DistinctQty", DISTINCTCOUNT ( 'Part File'[OrderMinimumQty] )
    ),
    [DistinctQty] > 1
)
Anonymous
Not applicable

Thank you! @AlexisOlson 

This is the result I got:

Megha3012_0-1634808448776.png

I dont see the partplantbyYearWeekNum being repeated.

I still quite not understand what the problem is.

Anonymous
Not applicable

I understood what the problem is.

PartplantByYearWeekNumber is repeated twice with different orderminqty.

Thank you! @AlexisOlson 

Can I please know how to fix that?

Thanks again!

You need to either remove the repeats before loading the query to the model or else decide how you want to choose Qty when there are multiple values present and write your lookup accordingly (not with LOOKUPVALUE).

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.

Top Solution Authors