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 September 15. Request your voucher.
Column [Will Evaluation be Required?] has choices of True, False, or Blank
Coulmn [Date Evaluation Completed] gives a date or is blank if not completed
I want a new column that says:
If [Will Evaluation be Required?] is true, then for all the [Date Evaluation Completed] blank items= open
and items with a date= completed
Thank you!
Solved! Go to Solution.
Please try below dax to add new calculated column:
Evaluation_Status = IF( [Will Evaluation be Required?] = TRUE(), IF( ISBLANK([Date Evaluation Completed]), "Open", "Completed" ), BLANK() )
Learn Power BI free:
Perfect! Thank you!
Please try below dax to add new calculated column:
Evaluation_Status = IF( [Will Evaluation be Required?] = TRUE(), IF( ISBLANK([Date Evaluation Completed]), "Open", "Completed" ), BLANK() )
Learn Power BI free:
User | Count |
---|---|
14 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
28 | |
19 | |
14 | |
8 | |
5 |