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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
marc_frei
Helper I
Helper I

Separate Values with Distinct Date

Hi,

 

I have a Problem. Sometimes are system is creating two entries with the same Value (see below eg 01.01.2019 and 31.12.2019). In Power BI it multiplies these Values wrongly up.

 

 

Mitarbeiter-Nr.BeschäftigungsgradGültigkeit Bg.

103810001.06.2016
103810001.07.2016
103810001.08.2016
103810001.09.2016
103810001.10.2016
103810001.11.2016
103810001.12.2016
103810001.01.2017
103810001.02.2017
103810001.03.2017
103810001.04.2017
103810001.05.2017
103810001.06.2017
103810001.07.2017
103810001.08.2017
103810001.09.2017
103810001.10.2017
103810001.11.2017
103810001.12.2017
103810001.01.2018
103810001.02.2018
103810001.03.2018
103810001.04.2018
103810001.05.2018
103810001.06.2018
103810001.07.2018
103810001.08.2018
103810001.09.2018
103810001.10.2018
103810001.11.2018
103810001.12.2018
103810001.01.2019
103810001.02.2019
103810001.03.2019
103810001.04.2019
103810001.12.2018
103810001.01.2019
103810001.02.2019
103810001.03.2019
103810001.04.2019
103810001.05.2019
103810001.06.2019
103810001.07.2019
103810001.08.2019
103810001.09.2019
103810001.10.2019
103810001.11.2019
103810001.12.2019
103810001.01.2020
103810001.12.2019
103810001.01.2020
 

 

How can I create a distinct Value or a Filter that there are no more double entries?

 

Many thanks in advance.Unbenannt.JPG

 

 

Regards,

Marc

2 ACCEPTED SOLUTIONS

@marc_frei, do you want to keep distinct rows?

 

If so, locate the table button on the left of the first column name, click the little arrow near this button. From the pop-up menu that will appear, click Remove Duplicates.

 

Or: select all columns and Home->Reduce Rows-> Remove Duplicates 

View solution in original post

dax
Community Support
Community Support

Hi @marc_frei , 

I  am not clear  about your requirement, if you want to remove dulicated value, I think you could refer to above suggestions , choose all column and click remove reduplicated. 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("zdExDoQwDAXRu6RGyE5CbJ8Fcf9rLJu0eAoqmlA8fRFNzrOoNC/b/ZH7FN1l7FV0lGt7MANzsMhNBUzBKvxv7uzZKlgD62AH2AAzMAeL3FbPxKCLUpe5c+iZWAPrYAfYADMwB4vcVs/EoItSl7kL6JlYA+u5feku620TG2AG5mABXQQMuih1+e+qvN9dPw==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [id = _t, amount = _t, date = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"id", Int64.Type}, {"amount", Int64.Type}, {"date", type date}}),
    #"Removed Duplicates" = Table.Distinct(#"Changed Type")
in
    #"Removed Duplicates"

 If not, please correct me and inform me more detailed information(such as your expected output and your sample data)? Then I will help you more correctly.

Please do mask sensitive data before uploading.

Thanks for your understanding and support.
Best Regards,
Zoe Zhi

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

4 REPLIES 4
dax
Community Support
Community Support

Hi @marc_frei , 

I  am not clear  about your requirement, if you want to remove dulicated value, I think you could refer to above suggestions , choose all column and click remove reduplicated. 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("zdExDoQwDAXRu6RGyE5CbJ8Fcf9rLJu0eAoqmlA8fRFNzrOoNC/b/ZH7FN1l7FV0lGt7MANzsMhNBUzBKvxv7uzZKlgD62AH2AAzMAeL3FbPxKCLUpe5c+iZWAPrYAfYADMwB4vcVs/EoItSl7kL6JlYA+u5feku620TG2AG5mABXQQMuih1+e+qvN9dPw==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [id = _t, amount = _t, date = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"id", Int64.Type}, {"amount", Int64.Type}, {"date", type date}}),
    #"Removed Duplicates" = Table.Distinct(#"Changed Type")
in
    #"Removed Duplicates"

 If not, please correct me and inform me more detailed information(such as your expected output and your sample data)? Then I will help you more correctly.

Please do mask sensitive data before uploading.

Thanks for your understanding and support.
Best Regards,
Zoe Zhi

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

Greg_Deckler
Super User
Super User

So you should be able to use Remove Duplicates from the ribbon


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

this is not working, beacause there are several Numbers (First Row) with the same issue. 

I filtered it just to post it here. 

 

I need several numbers but just (first column) but with just one date.

 

Sorry my request was not clear.

@marc_frei, do you want to keep distinct rows?

 

If so, locate the table button on the left of the first column name, click the little arrow near this button. From the pop-up menu that will appear, click Remove Duplicates.

 

Or: select all columns and Home->Reduce Rows-> Remove Duplicates 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors