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
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.