Forum Discussion
vin90
2 years agoRegular Visitor
Groupby and lookup values between tables using DAX
Hi Community. Could you please help me wth the following scenario? I have tables: Table_1 and Table_2. I am trying to populate column Desired_Value in Table_1. This Desired_Value column should bas...
- 2 years ago
Desired Value = var i = [ID] var b = Filter(Table_2,Table_2[ID]=i && Table_2[Date] in GENERATESERIES([Start_Date],[End_Date])) return sumx(b,[Ind_Value])
lbendlin
Super User
2 years agoDesired Value =
var i = [ID]
var b = Filter(Table_2,Table_2[ID]=i && Table_2[Date] in GENERATESERIES([Start_Date],[End_Date]))
return sumx(b,[Ind_Value])