Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi I have created a calculated column to display the number of days open for an issue, the only thing is it seems to be doing a calculation for a blank row and will return a value like 45702 for it and I need help trying to remove this. Here is the calculation I have in my calculated column which returns the correct value for the open and closed items -
Days Open = IF (
ISBLANK ( 'Issues Raised'[Date Closed] ),
TODAY () - 'Issues Raised'[Date],
'Issues Raised'[Date Closed] - 'Issues Raised'[Date]
)
How do I stop it calculating the blank line?
Solved! Go to Solution.
Hi @Belle2015 ,
You ca put another If statement like
Days Open =
IF(ISBLANK ( 'Issues Raised'[Date] ),blank(),
IF (
ISBLANK ( 'Issues Raised'[Date Closed] ),
TODAY () - 'Issues Raised'[Date],
'Issues Raised'[Date Closed] - 'Issues Raised'[Date]
))
Thank you this worked
Hi @Belle2015 ,
You ca put another If statement like
Days Open =
IF(ISBLANK ( 'Issues Raised'[Date] ),blank(),
IF (
ISBLANK ( 'Issues Raised'[Date Closed] ),
TODAY () - 'Issues Raised'[Date],
'Issues Raised'[Date Closed] - 'Issues Raised'[Date]
))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
80 | |
59 | |
35 | |
35 |
User | Count |
---|---|
100 | |
62 | |
56 | |
47 | |
41 |