Forum Discussion
Anonymous
5 years agoNot applicable
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 ...
- 5 years ago
Hey Ingrid,
You can try the following:
MinFvoorzieningTbvEerste=
SUMMARIZE (
'FvoorzieningTbvEerste',
'FvoorzieningTbvEerste'[NrClient],
"ingang", MIN ( 'FvoorzieningTbvEerste'[Ingang] )
)Kind regards
ErikHamoen
5 years agoResolver I
Hey Ingrid,
You can try the following:
MinFvoorzieningTbvEerste=
SUMMARIZE (
'FvoorzieningTbvEerste',
'FvoorzieningTbvEerste'[NrClient],
"ingang", MIN ( 'FvoorzieningTbvEerste'[Ingang] )
)
Kind regards
- Anonymous5 years agoNot applicable
Thanks ErikHamoen 🙏 this returns the values I needed.