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
Powerbi_superus
Frequent Visitor

Show Quantity based on Item number another table

Hi All,

I am new to Power bi  and DAX

 

Hi   Table  A   WITH  SONUMBER ,ITEMNO 
       Table  B   WITH  SONUMBER, ITEMNO, Quantity
       Table A   and Table B have same SONUMBER  and ITEMNO .

I have to show up the Quantity of Table B with repective to SONUMBER ,ITEMNO OF Table A

 

Please let me know how we can dax to show quantity of Table B as there is  no join between ITEM NO of  TABLE A AND TABLE B.


Thank you all

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @Powerbi_superus 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

TableA:

c1.png

TableB:

c2.png

 

There is no relationship between two tables. 

c3.png

 

You may create a measure like below.

Qty = 
SUMX(
    ADDCOLUMNS(
        TableA,
        "Result",
        CALCULATE(
            SUM(TableB[Quantity]),
            FILTER(
                ALL(TableB),
                [SoNumber]=EARLIER(TableA[SoNumber])&&
                [ItemNo]=EARLIER(TableA[ItemNo])
            )
        )
    ),
    [Result]
)

Or

Qty 2 = 
CALCULATE(
    SUM(TableB[Quantity]),
    TREATAS(TableA,TableB[SoNumber],TableB[ItemNo])
)

 

Result:

c4.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

3 REPLIES 3
v-alq-msft
Community Support
Community Support

Hi, @Powerbi_superus 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

TableA:

c1.png

TableB:

c2.png

 

There is no relationship between two tables. 

c3.png

 

You may create a measure like below.

Qty = 
SUMX(
    ADDCOLUMNS(
        TableA,
        "Result",
        CALCULATE(
            SUM(TableB[Quantity]),
            FILTER(
                ALL(TableB),
                [SoNumber]=EARLIER(TableA[SoNumber])&&
                [ItemNo]=EARLIER(TableA[ItemNo])
            )
        )
    ),
    [Result]
)

Or

Qty 2 = 
CALCULATE(
    SUM(TableB[Quantity]),
    TREATAS(TableA,TableB[SoNumber],TableB[ItemNo])
)

 

Result:

c4.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thank you Allan

amitchandak
Super User
Super User

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.