Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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 April 2022 | 14 April 2022 |
| 08 May 2021 | 18 May 2021 |
| 09 November 2022 | 19 November 2022 |
| 10 June 2022 | 20 June 2022 |
How To Acheive This By Using DAX? I Tried
Desired_Output = Tablename[Column_Name] + 10 (Not Work)
Solved! Go to Solution.
So you are creating a new calculated column. Did you try
Desired_Output = Tablename[Column_Name] +10
Hello @tamerj1 Sir,
Thanks For Your Sharing.
Sir As Per Your Answer I Have To Create A Calculated Column, Is It Not Possible To Do It Using Measure?
Note: Sir I Am New In Power BI, So Your Explanation Helps Me.
@it_akasjraj
It depends on how your visual look like. In general you may try
Desired_Output = DATEADD ( MAX ( Tablename[Column_Name] ), +10, DAY)
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)
@tamerj1 Please Find The Screenshot Of Dataset, There Is A Posting Date Column, And My Requirement Is To Make One More Column Beside Positng Date, The Value In New Column Will Be Posting Date + 10 Days...
So you are creating a new calculated column. Did you try
Desired_Output = Tablename[Column_Name] +10
@it_akasjraj
You used the code that is for a calculated column. Please see below screenshot.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 19 | |
| 10 | |
| 7 | |
| 6 | |
| 5 |