Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
Sorry for this question, but I tried to create a new table with Dax functions but it failed. i tried with summurize function but it doesn't work...
Could you help me to translate this SQL statement to a dax function ?
select max(connectiondate), UserLogin, applicationname, applicationversion,COUNT(*)
from LogTable
group by UserLogin, applicationname, applicationversion
Thanks a lot
Sébastien
Solved! Go to Solution.
EVALUATE ADDCOLUMNS( SUMMARIZE( TalbeName, TalbeName[UserLogin], TalbeName[applicationname], TalbeName[applicationversion] ), "MaxConDate", CALCULATE(MAX(TalbeName[connectiondate])), "Rows", 1 )
EVALUATE ADDCOLUMNS( SUMMARIZE( TalbeName, TalbeName[UserLogin], TalbeName[applicationname], TalbeName[applicationversion] ), "MaxConDate", CALCULATE(MAX(TalbeName[connectiondate])), "Rows", 1 )
Hi,
Thanks a lot !! I learned one other thing 🙂
Regards
Sébastien
You may refer to the article below.
https://www.sqlbi.com/articles/from-sql-to-dax-grouping-data/
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!