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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
tamfod
New Member

show the first row value from rows wtth same date

tamfod_0-1736844264408.png

The last two rows of the "Halmozott" column have the same value. I want a formula that displays all values ​​in the next column except those with the same date. For these, only the first one should display the value, and the second one should display nothing,

 

3 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @tamfod ,

 

If you can add an index column in Power Query Editor, it will be easy to implement it.

Steps:

1.Add an index column.

vstephenmsft_0-1737010030140.png

2.Create a calculated column.

Szurt Halmozott = VAR _min=CALCULATE(MIN('Table'[Index]),FILTER('Table',[Datumok]=EARLIER('Table'[Datumok])))
RETURN IF(_min=[Index],[Halmozott])

vstephenmsft_1-1737010901605.png

 

 

Best Regards,
Stephen Tao

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

tamfod
New Member

Thanks, its working!

View solution in original post

5 REPLIES 5
tamfod
New Member

Thanks, its working!

anmolmalviya05
Super User
Super User

Hi , Hope you are doing good!

Filtered Value =
IF(
RANKX(
FILTER(
TableName,
TableName[Dátumok] = EARLIER(TableName[Dátumok])
),
TableName[Dátumok],
,
ASC
) = 1,
TableName[Halmozott],
BLANK()
)

Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!

 

Let's Connect on LinkedIn: https://www.linkedin.com/in/anmol-malviya/?originalSubdomain=in

 

Subscribe my youtube channel for Microsoft Fabric and Power BI updates: https://www.youtube.com/@AnmolPowerBICorner



@tamfod

Thank you for your halp.

Your solving gives the next:

tamfod_0-1736849546857.png

In the new culomb the data the same as the "Halmozott". I would like the next result:

tamfod_1-1736849806938.png

 

Anonymous
Not applicable

Hi @tamfod ,

 

If you can add an index column in Power Query Editor, it will be easy to implement it.

Steps:

1.Add an index column.

vstephenmsft_0-1737010030140.png

2.Create a calculated column.

Szurt Halmozott = VAR _min=CALCULATE(MIN('Table'[Index]),FILTER('Table',[Datumok]=EARLIER('Table'[Datumok])))
RETURN IF(_min=[Index],[Halmozott])

vstephenmsft_1-1737010901605.png

 

 

Best Regards,
Stephen Tao

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

Thanks!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.