jrnewport1115
New Member
- Joined
- Jun 17, 2014
- Messages
- 13
Hello,
I currently have three working measures thanks to Matt Allington.
However, for my "Type" logic, I want to be able to place this "measure" into a row or column. I assume this needs to move to a calculated column?
(ie I want to be able to summarize by total base vs. incremental growth)
Any general direction on this one?
Thanks!!
I currently have three working measures thanks to Matt Allington.
Code:
PYsales:=CALCULATE(SUM(revenue[amount]),SAMEPERIODLASTYEAR('Calendar'[Date]))
Growth:=SUM(revenue[amount])-[PYsales]
Type:=IF([PYsales]=0,"Incremental",IF(AND(revenue[Sum of amount]=0,[PYsales]<>0),"Attrition","Base"))
However, for my "Type" logic, I want to be able to place this "measure" into a row or column. I assume this needs to move to a calculated column?
(ie I want to be able to summarize by total base vs. incremental growth)
Any general direction on this one?
Thanks!!