Forum Discussion
Anonymous
5 years agoNot applicable
Min Date Power Query
Hi Experts
How could i calcaulte the Mini date in Power Query.... Currently i am doing a calculated column
= calculate(MIN( BIvw_Lead[Date] ), ALLEXCEPT( BIvw_Lead, BIvw_Lead[BIvw_Reservation.crimson_name] ) )
Hi, Anonymous
You can create a custom column in PQ.
Like this:
List.Min(Table.SelectRows(#"Changed Type",(x)=>x[name]=[name])[date])Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- v-janeyg-msftCommunity Support
Hi, Anonymous
You can create a custom column in PQ.
Like this:
List.Min(Table.SelectRows(#"Changed Type",(x)=>x[name]=[name])[date])Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- AnonymousNot applicable
Thanks