Display Calculated Token Via Microflow?

0
HI – I was trying to get a microflow to display the result of this OQL because I wanted to verify the result of this expression. %MonthLength% was unrecognized by the microflow. Why would it be recognized in OQL but not a microflow?   '[%EndOfCurrentMonth%] - 13 * [%MonthLength%]'
asked
2 answers
0

If you are trying to do date manipulation have a look at the Add Date Function calls for microflows.

It looks like you want the date 13 months before the end of the current month, so you would probably want something like

addMonths([%EndOfCurrentMonth%], -13)

Hope this helps

answered
0

Except addmonths isn’t available in OQL from what I understand, and I’m trying to replicate my OQL logic so I can verify its result in a microflow (since OQL won’t let me display this value).

answered