Hi
I am new to Power BI. Could anyone please tell me the DAX equivalent of
SELECT [ClientId],CASE WHEN [Status] = 'Success' THEN 'Success' ELSE 'Fail' END 'Status' FROM [NotificationEvent].[dbo].[NotificationEventLog]
WHERE [Status] != 'Success'
GROUP BY [ClientId], CASE WHEN [Status] = 'Success' THEN 'Success' ELSE 'Fail' END
Thanks
Faiz
Solved! Go to Solution.
@writetofaiz , Create a new column and use with client in visual
New column in DAX
Status = if( [Status] = "Success" , "Success" , "Fail")
refer the series if needed
https://www.youtube.com/watch?v=WlvQ_SGy4iA&list=PLPaNVDMhUXGZNyKU0PgG2g3P0c6CPjMnj
@writetofaiz , Create a new column and use with client in visual
New column in DAX
Status = if( [Status] = "Success" , "Success" , "Fail")
refer the series if needed
https://www.youtube.com/watch?v=WlvQ_SGy4iA&list=PLPaNVDMhUXGZNyKU0PgG2g3P0c6CPjMnj
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
97 | |
79 | |
43 | |
32 | |
29 |
User | Count |
---|---|
133 | |
94 | |
86 | |
45 | |
42 |