Forum Discussion

sam021083's avatar
sam021083
Frequent Visitor
8 years ago
Solved

Calculated column help needed

Hello all,   I am facing an issue to get the required column as shown using DAX.   Please help how to get the required column in DAX.   Thanks, Sam
  • iamprajot's avatar
    iamprajot
    8 years ago
    what I understood from all this is, pick first value from FoecastedAllocation column where the WeekStartingDate is same as MonthlyDate
    so here it is,
    = IF(Data[WeekStartingDate]=Data[MonthlyDate],FIRSTNONBLANK(Data[FoecastedAllocation],Data[WeekStartingDate]=Data[MonthlyDate]),BLANK())