Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
DATEADD function not returning all the row under "column". Please help. Thanks.
Solved! Go to Solution.
Hi there,
Happy to help. This is super curious...it should definitely return the value for ALL rows. However there is another way to write the formula. This one below should work.
Column = Table1[Date] + 5
Reid Havens - Principal Consultant
PowerPivotPro
The documentation says this behavior is by design.
The result table includes only dates that exist in the dates column.
So when adding 5 days to “May 31,2017", it is "Jun 5, 2017" which doesn't exist in the date column.
You'll use @Reid_Havens suggestion as a workaround.
Thanks Eric!
Hi there,
Happy to help. This is super curious...it should definitely return the value for ALL rows. However there is another way to write the formula. This one below should work.
Column = Table1[Date] + 5
Reid Havens - Principal Consultant
PowerPivotPro
Thanks Reid!