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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Fidzi8
Helper V
Helper V

Precentage difference between the date

Hi,
I need advice. 

I have table with this columns

b7f198e8-e509-4a94-b1ff-dccdf8debad1.png

 

I want to create percenatge difference between the date

For example: from 3 325Kč to 3 500Kč = 5,2%

 

2022-01-19_11h58_45.png

Thank you
Ondřej

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Fidzi8 , Assume you are using a date table for slicer,

 

Try measure like

 

Measure =
VAR _min = MINX(allselected(Dates) ,Dates[Date])
VAR _max = MAXX(allselected(Dates) ,Dates[Date])
return
calculate(sum(Table[cost]), filter(Dates, Dates[Date] =_max)) -calculate(sum(Table[cost]), filter(Dates, Dates[Date] =_min))

 

 

Day Intelligence - Last day, last non continous day
https://medium.com/@amitchandak.1978/power-bi-day-intelligence-questions-time-intelligence-5-5-5c324...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

v-angzheng-msft
Community Support
Community Support

Hi, @Fidzi8 

Try this:

Measure =
VAR _min =
    MINX( ALLSELECTED( Dates ), Dates[Date] )
VAR _max =
    MAXX( ALLSELECTED( Dates ), Dates[Date] )
VAR _a =
    CALCULATE(
        SUM( Table[cost] ),
        FILTER( ALL( 'Dates' ), Dates[Date] = _min )
    )
VAR _b =
    CALCULATE(
        SUM( Table[cost] ),
        FILTER( ALL( 'Dates' ), Dates[Date] = _max )
    )
RETURN
    DIVIDE( b - a, b )

Or, please share your sample pbix file's link here, then I can try to look into it to come up with a more accurate measure.

 

 

Best Regards,
Community Support Team _ Zeon Zheng

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-angzheng-msft
Community Support
Community Support

Hi, @Fidzi8 

Try this:

Measure =
VAR _min =
    MINX( ALLSELECTED( Dates ), Dates[Date] )
VAR _max =
    MAXX( ALLSELECTED( Dates ), Dates[Date] )
VAR _a =
    CALCULATE(
        SUM( Table[cost] ),
        FILTER( ALL( 'Dates' ), Dates[Date] = _min )
    )
VAR _b =
    CALCULATE(
        SUM( Table[cost] ),
        FILTER( ALL( 'Dates' ), Dates[Date] = _max )
    )
RETURN
    DIVIDE( b - a, b )

Or, please share your sample pbix file's link here, then I can try to look into it to come up with a more accurate measure.

 

 

Best Regards,
Community Support Team _ Zeon Zheng

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

amitchandak
Super User
Super User

@Fidzi8 , Assume you are using a date table for slicer,

 

Try measure like

 

Measure =
VAR _min = MINX(allselected(Dates) ,Dates[Date])
VAR _max = MAXX(allselected(Dates) ,Dates[Date])
return
calculate(sum(Table[cost]), filter(Dates, Dates[Date] =_max)) -calculate(sum(Table[cost]), filter(Dates, Dates[Date] =_min))

 

 

Day Intelligence - Last day, last non continous day
https://medium.com/@amitchandak.1978/power-bi-day-intelligence-questions-time-intelligence-5-5-5c324...

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi @amitchandak,
thank you for your help.

 

The formula doesn´t work properly and I don´t know where the error might be.

Fidzi8_0-1642753675616.png

 

 

 

Thank you

Ondřej

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon & SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.