Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JMAlloway
Helper I
Helper I

Help with Annualized Measure

I have a very simple calculated measure that provides an annulized termination figure for the current year. What I would like to do, is modify this measure to only calculate the annualized figure for the current year only, otherwise display the total from previous years. How would I best achieve this? I thought I could use an IF, but it does not work  becasue I believe that I cannot mix columns and measures in this command. Thanks for any info

 

Annualized = 
DIVIDE([Terminations YTD],[MonthsPassed])*12​

 

 

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@JMAlloway , Not sure on other condition , say

 

Annualized = 
var _1 = DIVIDE([Terminations YTD],[MonthsPassed])*12​
var _2 = [Terminations LYTD]
return  
if(isblank(_1), _2, _1) 

/////
example to get LYTD
	Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd("Date"[Date],-1,Year),"12/31"))

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@JMAlloway , Not sure on other condition , say

 

Annualized = 
var _1 = DIVIDE([Terminations YTD],[MonthsPassed])*12​
var _2 = [Terminations LYTD]
return  
if(isblank(_1), _2, _1) 

/////
example to get LYTD
	Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd("Date"[Date],-1,Year),"12/31"))

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors