如何在 Power Bi 中将 table 与日历 table 的月份和年份数据连接起来

How to connect table with Month and year data with calendar table in Power Bi

我正在尝试联系一位 table(工资单 table),他的工时数按一年的月份计算。例如:

  1. 2017 年 1 月 10000
  2. 2017 年 2 月 12000

我想将此 table 连接到我的日历 table 以对我已经连接到我的日历 table 的事实 table 数据执行一些计算。

任何人都可以帮我在日历 table 和工资单 table 之间建立关系。

提前致谢!!

假设您在 Calendar table 中有一个 Date 列,您可以使用以下 DAX 表达式创建一个新列:

Year Month = 
YEAR('Calendar'[Date]) & " " & 
FORMAT(DATE(1, MONTH('Calendar'[Date]), 1), "MMM")

然后您可以在 Year Month 列和 Month 列之间创建一对多关系 Payroll table: