Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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/
User | Count |
---|---|
85 | |
79 | |
64 | |
52 | |
46 |
User | Count |
---|---|
101 | |
44 | |
41 | |
39 | |
36 |