Forum Discussion
it_akasjraj
4 years agoFrequent Visitor
Add 10 Day In Data Column.
Hi Team and Community Expert's, I have one date column in my power bi, i have to add 10 days on that column and store value in new column. Description/Example:- Date Desired Output 04 Ap...
- 4 years ago
So you are creating a new calculated column. Did you try
Desired_Output = Tablename[Column_Name] +10
tamerj1
4 years agoCommunity Champion
Hi it_akasjraj
It should if you are creating a calculated column not a measure.
However, you can also try
Desired_Output = DATEADD ( Tablename[Column_Name], +10, DAY)it_akasjraj
4 years agoFrequent Visitor
tamerj1 This Is The Error I Got, When I Try To Create The Calculated Column