Forum Discussion
Anonymous
4 years agoNot applicable
How to adding a Date type column with text type column (containing numbers)
Hello, In excel I am using a formula =IF(AY2<>"NA",(AE2+AZ2),"OPEN") to replicate the same but when I use custom column in Power BI, I am not able to do so. I want to add a Date type ("AE") ...
- 4 years ago
Hi Anonymous
You can try this, create a calculated column,
Column = IF ( 'Table'[Resolution Time] <> "NA", ( 'Table'[Logged Date] + 'Table'[Closure Days] ) & "", "OPEN" )Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
v-xiaotang
4 years agoCommunity Support
Hi Anonymous
You can try this, create a calculated column,
Column =
IF (
'Table'[Resolution Time] <> "NA",
( 'Table'[Logged Date] + 'Table'[Closure Days] ) & "",
"OPEN"
)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Thank you v-xiaotang for your support. It worked.