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
ingrid
Helper II
Helper II

Create new table with MIN date

I want to create a new table from my table with customerId and startdates which returns one row per customer with the minimum dat per customer. I've tried to use SELECTCOLMUNS and FILTER and I get a table with single customerId's but the minimum date is not calculated per customer but from the total. How can I get the minimum date per customer?

screenshot.png

1 ACCEPTED SOLUTION
ErikHamoen
Resolver I
Resolver I

Hey Ingrid,

 

You can try the following:

 

MinFvoorzieningTbvEerste=
SUMMARIZE (
    'FvoorzieningTbvEerste',
    'FvoorzieningTbvEerste'[NrClient],
    "ingang"MIN ( 'FvoorzieningTbvEerste'[Ingang] )
)

 

Kind regards

View solution in original post

4 REPLIES 4
ErikHamoen
Resolver I
Resolver I

Hey Ingrid,

 

You can try the following:

 

MinFvoorzieningTbvEerste=
SUMMARIZE (
    'FvoorzieningTbvEerste',
    'FvoorzieningTbvEerste'[NrClient],
    "ingang"MIN ( 'FvoorzieningTbvEerste'[Ingang] )
)

 

Kind regards

Thanks @ErikHamoen 🙏 this returns the values I needed.

AlB
Super User
Super User

Hi @ingrid 

You could do something like:

New Table =
ADDCOLUMNS (
    DISTINCT ( Table1[NrClient] ),
    "DatumIngang", CALCULATE ( MIN ( Table1[Ingang] ) )
)

 You might have to filter the first argument of the ADDCOLUMNS. If you explain what the filter exactly does in your code (I don't see it completely), we can get to a more accurate answer

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

mahoneypat
Employee
Employee

I would make this table in the query editor with a Group By step.  Or you should use ADDCOLUMNS(SUMMARIZE(... instead of SELECTCOLUMNS which doesn't do any aggregation.

 

Regards,

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


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.