Forum Discussion
USABB_Data
7 years agoHelper II
Dynamic SUM IF Using Calculate
Hi, I am looking to create a dynamic Sum If measure but cannot get it right. I saw this topic, remove link because would not let me post , but still am having trouble. Data SLS_ID Fi...
- 7 years ago
Hi USABB_Data ,
You can try to create measure like DAX below.
MF YTM = CALCULATE(SUM(Table1[Sales]),FILTER(ALLSELECTED(Table1),Table1[SLS_ID]=MAX(Table1[SLS_ID])&&Table1[Fiscal Period]<MAX(Table1[Fiscal Period])))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-xicai
7 years agoCommunity Support
Hi USABB_Data ,
You can try to create measure like DAX below.
MF YTM = CALCULATE(SUM(Table1[Sales]),FILTER(ALLSELECTED(Table1),Table1[SLS_ID]=MAX(Table1[SLS_ID])&&Table1[Fiscal Period]<MAX(Table1[Fiscal Period])))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
USABB_Data
7 years agoHelper II
Incredible, it worked perfectly!! Thanks!!