Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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] & "")