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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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