Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Solved! Go to Solution.
@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"))
@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"))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 32 | |
| 31 | |
| 18 | |
| 12 | |
| 11 |