Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. 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]
))
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |