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.
I am working on a report and have run into a roadblock. I would greatly appreciate assistance.
I have a table: Annualisp
I have a column: Date of Total Completion
I have a different column: Implementation Date
I am attempting to write a dax measure to calculate a "Yes" or "No" response if the Date of Total Completion was prior to the Imp Date.
I did that by writing
Solved! Go to Solution.
Thanks so much. I changed the blank is no to blank is blank and in another measure counted the "yes" from the column. Worked great for my purpose.
You can have nest IF statements in DAX. So maybe first check for a NULL value:
Total Complete by Imp Date =
IF ( ISBLANK ( [Date of Total Completion] ), "No",
IF(DATEVALUE([Date of Total Completion]) < [Implementation Date], "Yes", "No"),
)
Proud to be a Super User! | |
Thanks so much. I changed the blank is no to blank is blank and in another measure counted the "yes" from the column. Worked great for my purpose.