The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi Experts
Is it possible to have a IF DAX Calculated Column formula to incorporate both text and numbers.
Measure =
if(FACT[year_str] = 2022, "Current year-1",[year_str])
Solved! Go to Solution.
@Anonymous You can do this:
if(FACT[year_str] = 2022, "Current year-1",[year_str] & "")
@Anonymous You can do this:
if(FACT[year_str] = 2022, "Current year-1",[year_str] & "")