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
snaydeck
New Member

I need to calculate the growth or decrease based on the first and last record


I need to calculate the growth or decrease based on the first and last record.

 

I have no idea. Bring data from one column based on another. When I say this, it is because I understand that I should bring the "QTY" column based on MIN (vdata) and MAX (vdata) and this I am not able to do with the little knowledge I have.

 

namevdataqty
name a01/01/201710
name a10/10/201715
name a11/11/201720
name b02/02/201710
name b04/04/201714
name b05/05/20178
name c08/08/201710
name c09/09/201732
name c05/05/201742



----------------------------------

Example "Name A":

First reading: 01/01/2017
Value: 10

Last reading: 11/11/2017
Value: 20

-> Positive Result: 100%

----------------------------------

Example "Name B"

First reading: 02/02/2017
Value: 10

Last reading: 11/11/2017
Value: 8

-> Negative Result: (- 20%)

----------------------------------

In the past I simply calculated using MIN (qty) and MAX (qty). But sometimes between falls and uploads the data comes in incorrectly. GROWPERCENT = ((MAX(qty) - MIN(qty))/ MIN(qty)

I appreciate the help.

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi,

 

Use this measure

Growth :=
CALCULATE (
    VALUES ( Table1[qty] ),
    FILTER ( Table1, Table1[vdata] = MAX ( Table1[vdata] ) )
)
    / CALCULATE (
        VALUES ( Table1[qty] ),
        FILTER ( Table1, Table1[vdata] = MIN ( Table1[vdata] ) )
    )
    - 1

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

Hi,

 

Use this measure

Growth :=
CALCULATE (
    VALUES ( Table1[qty] ),
    FILTER ( Table1, Table1[vdata] = MAX ( Table1[vdata] ) )
)
    / CALCULATE (
        VALUES ( Table1[qty] ),
        FILTER ( Table1, Table1[vdata] = MIN ( Table1[vdata] ) )
    )
    - 1

Regards
Zubair

Please try my custom visuals

Hi @Zubair_Muhammad thanks a lot.

 

I just tested and it worked perfectly!!

 

When the person has the knowledge, everything is easier, right?

 

Thank you very much.

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.