Hello,
I have applied a Vlookup between 2 files and as expected, I have received right_values and normal values.
Now, right_values need to be populated as it is into other columns based on the name of the column. (Like using formula to assign value from 1 column to other)
The column names are like: Jan'24 Value Feb'24 Value Mar'24 Value and so on... until December
All the columns are already created for an year in the template
And the column to be updated is simply the corresponding column at which the workflow is run. So, if run in February, the column to be updated will be Feb'24 Value.
For an year, it can be done by adding a column in the same format, named "CurrentMonthYear" using date time now and IF [CurrentMonthYear] == "Jan'24" THEN [Jan'24 Values] = [Right_Values] ELSEIF [CurrentMonthYear] == "Feb'24" THEN [Feb'24 Values] = [Right_Values] and so on...
But this will hold true only this year, as next year, the formula needs to be updated by the business team to accommodate for 2025 (replacing all 24 with 25).
So, my question is...
Is there any way to automatically update all the 24s in the formulas to 25 (year in which workflow is running) so that the workflow runs perfectly fine without any further updates in future?