Forum Discussion
Anonymous
4 years agoNot applicable
Date and Time
Hi, I need to add today's date with one column which will return date column.I have a logic in spotfire and I need to implement in power BI.I am sharing the logic for spotfire If((left([STATUS],...
- 4 years ago
Anonymous
If you are trying to add a new column then try as follows:NewColumn = IF( left([STATUS],2) IN {"01","02","04","10","11","13","30","50","60"}, [ST_Leadtime level] + NOW() )
Fowmy
4 years agoSuper User
Anonymous
If you are trying to add a new column then try as follows:
NewColumn = IF( left([STATUS],2) IN {"01","02","04","10","11","13","30","50","60"}, [ST_Leadtime level] + NOW() )Anonymous
4 years agoNot applicable
Thank you.It's working.