在Power Bi中通过“ WEEK”查看销售数据

时间:2020-07-15 21:04:29

标签: powerbi

您能帮我弄清楚如何在Power BI视觉效果中通过“ WEEKS”显示销售数据吗?我有一个日历表,日期层次结构按年,季度,月和日列出,没有星期选项。the visual I'd like to create is the chart at the bottom of the image I have attached谢谢

1 个答案:

答案 0 :(得分:1)

您需要将Week添加到您的日历中。 如果您使用的是DAX,则有多种方法 要显示一年中的星期几,请使用WEEKNUM

Week No = WEEKNUM(Table1[Date], 2)

Power BI Table showing week number

使用日期格式在一周的开始使用

Start of Week = 'Calendar'[Date]  - WEEKDAY('Calendar'[Date],2) +1

Power Query中的等效函数为Date.WeekOfYearDate.StartOfWeek

Power Query Week Functions