Forum Discussion
Anonymous
6 years agoNot applicable
Help with LOOKUPVALUE
Hello everyone, I have two tables: TAB_Summary and TAB_Projects. TAB_Summary Project # Stage Days in Stage 1 Idea 10 2 Development 15 3 Launch 20 TAB_Projects ...
Greg_Deckler
Community Champion
6 years agoAnonymous - Hard to be certain. The error you are getting is generally encountered when creating a measure and referencing columns without an aggregator. You can try the MAXX(FILTER(...),...) approach:
Days in Stage = MAXX(FILTER(TAB_Projects, TAB_Projects[Project #] = TAB_Summary[Project #] && TAB_Projects[Stage] = TAB_Summary[Stage]),TAB_Projects[Days in Stage])