The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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] & "")