Hi there, @atcodedog05
I am trying to insert the number of rows below each row as the number of months and in invoice date get the date plus one month.
In the desirable file as an example, I explained that. Could you please let me know how can I achieve that?
Thanks,
Solved! Go to Solution.
Hi @Sebastiaandb,
Thank you very much. Also, I want to get a column that shows the month from 0 to the end of the number. For example for the first row, I have 43 months. In another column, I need to show from 0 to 43.
Could you please help me? Thanks,
Also, I want to get a column that shows the month from 0 to the end of the number. For example for the first row, I have 43 months. In another column, I need to show from 0 to 43.
You might use a Formula tool to introduce a new column with a formula that goes:
'0 to ' + [Months]
If Month is stored as a number, you'd have to cast it to a string, so your formula might instead be:
'0 to ' + ToString([Months])
Including the month number! @atcodedog05 's solution is a bit more elegant i would say ;-).
Greetings,
Seb