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

Calculating ratio if one value is smaller than another in 2 different table

Hello everyone, may I know how can i calcultae the the ratio when comparing the 2 column in different table ? for example, in PO table, if the "PO delivery date" is smaller than GRN date in GRN table. it will be consider as late delivery. and i would like to know the ratio of row item that is "late delivery" in PO table. thank you !

PO table

nicksonteh_0-1653797408322.png

GRN Table

nicksonteh_1-1653797508881.png

 

 

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

According to your screenshot, I know you create a relationship between 'PO Table'[PO Number] and 'GRN Table'[PO Number]. Error should be caused by one to many relationship. I think there should be multiple duplicate PO Number in GRN table. Related function could only return a single value instead of multiple values. So you will get error. I suggest you to try Max function to get GRN Date.

I can reproduce the issue in my sample.

PO:

RicoZhou_1-1654063774029.png

GRN:

RicoZhou_2-1654063782804.png

RicoZhou_0-1654063748203.png

Try this code to calculate the percentage of on time delivery.

on time delivery % = 
VAR _COUNT_ON_TIME =
    CALCULATE (
        DISTINCTCOUNT ( 'PO Table'[PO Number] ),
        FILTER (
            ALLSELECTED ( 'PO Table' ),
            'PO Table'[PO Delivery Date] >= CALCULATE ( MAX ( 'GRN Table'[GRN date] ) )
        )
    )
VAR _COUNTALL =
    CALCULATE (
        DISTINCTCOUNT ( 'PO Table'[PO Number] ),
        ALLSELECTED ( 'PO Table' )
    )
RETURN
    DIVIDE ( _COUNT_ON_TIME, _COUNTALL )

 Result is as below.

RicoZhou_3-1654064646380.png

 

Best Regards,
Rico Zhou

 

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

10 REPLIES 10
tamerj1
Super User
Super User

Hi @Anonymous 

do you have a relationship between the two tables? If not can you create one?

one more thing to notice. The dates seem to be of text data type!

Anonymous
Not applicable

hi, Yes. I have created relationship between both table. 
Okay ! have change to date already !. thank you !

 

Hi @Anonymous 

please try

late delivery % =
DIVIDE (
    SUMX (
        'PO Table',
        IF ( 'PO Table'[PO Delivery Date] < RELATED ( 'GRN Table'[GRN date] ), 1 )
    ),
    COUNTROWS ( 'PO Table' )
)
Anonymous
Not applicable

Hi, thanks for reaching out ! but not sure why it coult not found the GRN date. 

nicksonteh_0-1653810101611.png

this is the relationshop i created between both table

nicksonteh_1-1653810214202.png

 

Hi @Anonymous ,

 

According to your screenshot, I know you create a relationship between 'PO Table'[PO Number] and 'GRN Table'[PO Number]. Error should be caused by one to many relationship. I think there should be multiple duplicate PO Number in GRN table. Related function could only return a single value instead of multiple values. So you will get error. I suggest you to try Max function to get GRN Date.

I can reproduce the issue in my sample.

PO:

RicoZhou_1-1654063774029.png

GRN:

RicoZhou_2-1654063782804.png

RicoZhou_0-1654063748203.png

Try this code to calculate the percentage of on time delivery.

on time delivery % = 
VAR _COUNT_ON_TIME =
    CALCULATE (
        DISTINCTCOUNT ( 'PO Table'[PO Number] ),
        FILTER (
            ALLSELECTED ( 'PO Table' ),
            'PO Table'[PO Delivery Date] >= CALCULATE ( MAX ( 'GRN Table'[GRN date] ) )
        )
    )
VAR _COUNTALL =
    CALCULATE (
        DISTINCTCOUNT ( 'PO Table'[PO Number] ),
        ALLSELECTED ( 'PO Table' )
    )
RETURN
    DIVIDE ( _COUNT_ON_TIME, _COUNTALL )

 Result is as below.

RicoZhou_3-1654064646380.png

 

Best Regards,
Rico Zhou

 

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

Anonymous
Not applicable

Hi @v-rzhou-msft ,

Thank you so much for your clarification, it does work now and your explanation is really helpful!

 

@Anonymous 

 

late delivery % =
DIVIDE (
    SUMX (
        'GRN Table',
        IF ( 'GRN Table'[GRN date] > RELATED ( 'PO Table'[PO Delivery Date] ), 1 )
    ),
    COUNTROWS ( 'PO Table' )
)

 

Samarth_18
Community Champion
Community Champion

Hi @Anonymous ,

 

Could you please share the expected output?

 

BR,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Anonymous
Not applicable

Hi Samarth, thanks for yor answer in one of the question i share jn. (Solved: How to compare date in different table - Microsoft Power BI Community)

 

I think the problem i face now is that. I wanted to create a card in power Bi that can show the percentage of the line item that show "on time delivery". for exmaple, based on the picture below, there are 5 out of 10 row that show "On time". so, the card should be showing 50%. 

nicksonteh_1-1653803969632.png

 

 

 

@Anonymous Okay after creating that column,you could create a measure as below:-

Measure =
VAR total_row =
    COUNTROWS ( 'PO Table' )
VAR ontime_row =
    COUNTROWS ( FILTER ( 'PO Table', 'PO Table'[Column] = "On Time Delivery" ) )
RETURN
    DIVIDE ( ontime_row, total_row, 0 )

Note:- Kindly Mark this measure format as percentage.

 

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

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