Boolean check after certain time period
Can somebody help me if a boolean is true for a particular month and if we need to make the boolean true for all the months coming in future how can be do that?
Also, after few months if I want to make that boolean false, how can we do that?
Answers
-
Create another line item and use the function Previous(line item with the boolen)
0 -
Hi @rob_marshall - Thanks for helping but my scenario is different.
Screenshot below:
I want if Input is true in Jan 24 and false in Feb 24, my final value line item should be true for all the months from Feb 24 onwards because Jan 24 is true.
Also, suppose I want to make it false after sept 24, how can I do that?
0 -
Try this
0 -
@rob_marshall - how about reseting it after 5-6 months?
0 -
Ok, then try this
0 -
Better yet, for the previous line item, simply use this formula
0 -
Set the boolean to
true
in your logic for the current and future months. To make itfalse
later, update the condition tofalse
when needed.-5