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
Hi all,
How can I add a column that returns "Yes" if the following statements are true:
Please could someone advise the DAX code?
Thank you
Solved! Go to Solution.
Hi @HenryJS
try
Column = IF(
ISBLANK([CSCC]) ||
DATEDIFF(TODAY(), [CSCC], MONTH) <= 1 ||
ISBLANK([Passport]) ||
DATEDIFF(TODAY(), [Passport], MONTH) <= 1 ||
[Reference1] = "No" ||
[Reference2] = "No"
,
"Yes",
"Other"
)
Hi @HenryJS
try
Column = IF(
ISBLANK([CSCC]) ||
DATEDIFF(TODAY(), [CSCC], MONTH) <= 1 ||
ISBLANK([Passport]) ||
DATEDIFF(TODAY(), [Passport], MONTH) <= 1 ||
[Reference1] = "No" ||
[Reference2] = "No"
,
"Yes",
"Other"
)
@az38 yes!! That's perfect. Thank you - can always rely you will give the exact answer as required!!
Hope you are well.
Henry
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!