Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi, I am trying to convert an SQL query to Dax - any ideas please?
select
l.council,
sg,
type,
population,
case
when datepart(month, transaction_date) < 7 then 'H1' else 'H2' end as half,
datepart(year,transaction_date) as year,
sum(amount) as total
from
sg_client_region l join sg_trans_mapped r
on l.clientID = r.customer_id
join pops r2 on l.council = r2.council
where r.subcategory not like ('%transfer%') and transaction_date > '2017-01-01'
group by
l.council, sg, type, population, datepart(year,transaction_date),
case when datepart(month, transaction_date) < 7 then 'H1' else 'H2' end;
Cheers
Solved! Go to Solution.
Hi @Anonymous ,
For your requirement, you could refer to this article about how to convert SQL query to DAX firstly.
If you still need help, please share your data sample and your desired output so that I could write the dax expression.
Best Regards,
Cherry
Hi @Anonymous ,
Have you solved your problem?
If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please feel free to ask.
Best Regards,
Cherry
Hi @Anonymous ,
Have you solved your problem?
If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please feel free to ask.
Best Regards,
Cherry
Hi @Anonymous ,
For your requirement, you could refer to this article about how to convert SQL query to DAX firstly.
If you still need help, please share your data sample and your desired output so that I could write the dax expression.
Best Regards,
Cherry
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
115 | |
69 | |
62 | |
46 |