Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
71 | |
70 | |
38 | |
28 | |
26 |
User | Count |
---|---|
97 | |
88 | |
59 | |
43 | |
40 |