Forum Discussion
DAX - Max time
- 5 years ago
Hi, cottrera
Please check the below.
It is for creating a new column.
Max Time CC =VAR currentdate = 'Table'[Date]VAR currentanme = 'Table'[Name]RETURNIF (CALCULATE (MAX ( 'Table'[Time] ),FILTER ( 'Table', 'Table'[Date] = currentdate && 'Table'[Name] = currentanme )) = 'Table'[Time],'Table'[Time],BLANK ())Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
Hi, cottrera
Please check the below.
It is for creating a new column.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
- cottrera5 years agoPost Prodigy
Thank you again for your quick response. The DAX function did not work at first. This was due to the table being a direct query. When I converted it to import the dax worked fine. 😀