How to adddays in convert time zone action? Like I want previous date not the current date and it should be in Eastern time format not in UTC. ?
Solved! Go to Solution.
You can't add days in the Convert time zone. But if the Convert time zone calculation would take you to tomorrow or yesterday then the date will also change. You can AddDays to a TimeSpan inside a ConvertTimezone function if you want for example the date time 7 days from now in the local timezone. Something like this
convertFromUtc(addDays(utcNow(),7),'Eastern Standard Time')
You can't add days in the Convert time zone. But if the Convert time zone calculation would take you to tomorrow or yesterday then the date will also change. You can AddDays to a TimeSpan inside a ConvertTimezone function if you want for example the date time 7 days from now in the local timezone. Something like this
convertFromUtc(addDays(utcNow(),7),'Eastern Standard Time')