我正在使用Power BI处理报告。我想获得每小时发送的电子邮件数量。我在SQL Server中进行查询,但在将其转换为DAX来创建度量时遇到困难。我还想获得按小时发送的平均电子邮件数量。
我的查询如下:
select datepart(hour,CreatedDate), count(MailId) from [DW PI].[dbo].[Email Fact]
group by datepart(hour,CreatedDate)
order by count(MailId) desc