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.
Hello,
I have an issure with this code, that calculates the transit time between two dates, when the last date is blank. Is there a way to add a function to that code, so it gives a blank value when one of the two dates are blank?
count = var calendarTable= CALENDAR([Start Date],[End Date]) var exceptDate=CALCULATETABLE(VALUES('Situational Holidays'[situationDate]),FILTER(ALL('Situational Holidays'),[Entity]=EARLIER(Dates[Origin Entity]))) var filtered=ADDCOLUMNS(EXCEPT(calendarTable,exceptDate),"Day Of Week",WEEKDAY([Date],1)) return COUNTROWS(FILTER(filtered,[Day Of Week]<>6&&[Day Of Week]<>7))
Solved! Go to Solution.
You may use ISBLANK Function as follows.
IF ( ISBLANK ( [Start Date] ) || ISBLANK ( [End Date] ), BLANK (), [count] )
You may use ISBLANK Function as follows.
IF ( ISBLANK ( [Start Date] ) || ISBLANK ( [End Date] ), BLANK (), [count] )
What is the issue?
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 |