Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
sdhn
Responsive Resident
Responsive Resident

Values replace by "Not Resolved Yet"

Hi All,

 

 

I have calculated column as :

Elapsed = [Resolved Date Time] - [Created]
 
Many Resolved Date Time rows has no value.
When there is no value its give me result as:
 
sdhn_0-1637252173059.png

 

 

I want to replace this for "Elapsed" column by either no value, Zero (0) or 'NoT Resolved Yet'.

 

Any help will be appreciated.  thanks 

 
1 ACCEPTED SOLUTION
smpa01
Super User
Super User

@sdhn  can you try this

Column =
VAR _diff = [Resolved Date Time] - [Created] 
RETURN IF([Resolved Date Time]=BLANK(),0,_diff)
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

4 REPLIES 4
smpa01
Super User
Super User

@sdhn  you missed the underlined part

 

VAR _diff = [Resolved Date Time] - [Created]
RETURN IF([Resolved Date Time]=BLANK(),0,_diff)

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
smpa01
Super User
Super User

@sdhn  can you try this

Column =
VAR _diff = [Resolved Date Time] - [Created] 
RETURN IF([Resolved Date Time]=BLANK(),0,_diff)
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
sdhn
Responsive Resident
Responsive Resident

Thanks 

sdhn
Responsive Resident
Responsive Resident

sdhn_0-1637257658746.png

Please see above for error message.  Thanks 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.