Hi,
I've many fields with dates as there header.
eg: attached screenshot.
I want create a formula in dynamic rename tool which will add the word 'actual' to the prefix of the dates which are less than today's date.
any help will be grate
Solved! Go to Solution.
Hey @Ronal_bal, this expression ought to do it:
IF [_CurrentField_] < DateTimeToday() THEN 'Actual_'+[_CurrentField_] ELSE [_CurrentField_] ENDIF
Hi @Ronal_bal here is the formula that will get you to your solution.
IF [_CurrentField_] < DateTimeNow()
THEN "Actual "+[_CurrentField_]
ELSE [_CurrentField_]
ENDIF
User | Count |
---|---|
19 | |
15 | |
15 | |
9 | |
8 |