Forum Discussion
CD1
8 years agoFrequent Visitor
Lookupvalue + Sum column values in different table
Is it possible to do a “lookupvalue” in a measure from a column in a different table specified by a range and to sum that range? Are there other options?
- Anonymous8 years ago
Hi CD1,
Please use calculate with filter functions to instead lookupvalue, I don't think 'lookupvalue' can suitable for your requirement.
For example:
Sum from other table = CALCULATE ( SUM ( table[value] ), FILTER ( ALL ( table ), table[date] >= FIRSTDATE ( table2[date] ) && table[date] <= LASTDATE ( table2[date] ) ) )
Regards,
Xiaoxin Sheng
Anonymous
8 years agoNot applicable
Hi CD1,
Please use calculate with filter functions to instead lookupvalue, I don't think 'lookupvalue' can suitable for your requirement.
For example:
Sum from other table =
CALCULATE (
SUM ( table[value] ),
FILTER (
ALL ( table ),
table[date] >= FIRSTDATE ( table2[date] )
&& table[date] <= LASTDATE ( table2[date] )
)
)
Regards,
Xiaoxin Sheng
PVVBl00
2 years agoHelper III
Hello
In the event that I want to do the same, but add the values according to some concept, how to do it