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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
NJ81858
Helper IV
Helper IV

DAX Measure for KPI Target Value

Hello,

 

I am trying to create a KPI visual that tracks a value over time compared to the value on the first date. I am trying to have my Target Value be the value on the first date, and the measure that I currently have is not quite working. The measure that I currently have is:

First Value = CALCULATE(SUM('Table'[Balance]), FILTER('Table', [Date] = MIN('Table'[Date])))

 

What the measure is doing currently is just using the most recent value, rather than the first value no matter what.

 

Any help would be greatly appreciated. Thank you in advance!

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @NJ81858 

 

You can try the following formula.

First Value =
CALCULATE ( SUM ( 'Table'[Balance] ),
    FILTER ( ALL ( 'Table' ),
        [Date] = CALCULATE ( MIN ( 'Table'[Date] ), ALL ( 'Table' ) )
    )
)

 

Best Regards,

Community Support Team _Charlotte

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

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi, @NJ81858 

 

You can try the following formula.

First Value =
CALCULATE ( SUM ( 'Table'[Balance] ),
    FILTER ( ALL ( 'Table' ),
        [Date] = CALCULATE ( MIN ( 'Table'[Date] ), ALL ( 'Table' ) )
    )
)

 

Best Regards,

Community Support Team _Charlotte

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

 

mlsx4
Super User
Super User

Hi @NJ81858 

 

I think that you should use ALL inside the filter:

 

First Value = CALCULATE(SUM('Table'[Balance]), FILTER(ALL('Table'), [Date] = MIN('Table'[Date])))

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.