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
sw123
Helper III
Helper III

Use only last value

Hi,

 

I have a table that looks like this:

DateItemAmountEvent
14.5.2024A2607,09A
14.5.2024A2285,214B
14.5.2024A2090,322C
14.5.2024B9750A
14.5.2024B9000B
14.5.2024B9000C
13.5.2024A2622A
13.5.2024A2345B
13.5.2024A2765C
13.5.2024B9876A
13.5.2024B9200B
13.5.2024B9200C

 

I would like my report to show only the first value per item and date. How do I do that?

 

Thankful for help!

1 ACCEPTED SOLUTION
ddpl
Solution Sage
Solution Sage

@sw123 Cerate Measure as per below and use as filter

Measure = SWITCH(
    TRUE(),
    MAX('Table (4)'[Date]) = MAX('Table (4)'[Date]) && MIN('Table (4)'[Event]) = "A", 1,)

 

ddpl_0-1715684270734.png

 

 

 

 

 

View solution in original post

2 REPLIES 2
ddpl
Solution Sage
Solution Sage

@sw123 Cerate Measure as per below and use as filter

Measure = SWITCH(
    TRUE(),
    MAX('Table (4)'[Date]) = MAX('Table (4)'[Date]) && MIN('Table (4)'[Event]) = "A", 1,)

 

ddpl_0-1715684270734.png

 

 

 

 

 

Anand24
Super User
Super User

@sw123 ,
How are you determining the first value for a day if time is not available in the data? What should be the expected output for the sample data you provided?

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.

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors