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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Everyone,
I am a newbie to PBI and I am struggling to create a simple measure on a column.
I have a date column CTT sign date and I am trying to create something like this.
If CTT sign date is current year then (measure1 * 1.52) - measure1 is a field from a table
IF(YEAR(VALUES('FACT Sales Pipeline'[CTT Sign Date])) = YEAR(TODAY()),(SUM('FACT Sales Pipeline'[Converted Booking]) * 1.52),0)
Solved! Go to Solution.
Hi @lprabhal,
Since you have to perform this operation for every date you should create a DAX column and not a measure. You can use:
Result = IF(YEAR('Table'[Date])=YEAR(TODAY()),'Table'[Field]*1.52,0)
Works for you? Mark this post as a solution if it does!
Check out this post of mine: Forecast Period - Previous Forecasts
Spare some time to read: How to Export Telemetry Data from Azure IoT Central into Power BI
Great! it's working, much appreciate your help
Hi @lprabhal,
Since you have to perform this operation for every date you should create a DAX column and not a measure. You can use:
Result = IF(YEAR('Table'[Date])=YEAR(TODAY()),'Table'[Field]*1.52,0)
Works for you? Mark this post as a solution if it does!
Check out this post of mine: Forecast Period - Previous Forecasts
Spare some time to read: How to Export Telemetry Data from Azure IoT Central into Power BI
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!