vineelag
(vineetha)
November 16, 2023, 11:59pm
1
Hi All,
I want Convert Based One Excel Column Month Year(Column B) To In another Excel Column As Financial Year(Column C), You See In The Given Below Example
Based On Column C(Year) Values To Make Column C (Financial Year) As Financial Year Values.
Where Financial Year Starts From April 2023
Ex 27/04/2023 = 202401
18/07/2023 = 202404
How Can I achieve This ?
Thank You!!!
Yoichi
(Yoichi)
November 17, 2023, 12:15am
2
Hi,
How about the following sample?
CurrentRow("Financialy Year") = DateTime.ParseExact(CurrentRow("Year").ToString,"d/M/yyyy",System.Globalization.CultureInfo.InvariantCulture).AddMonths(9).ToString("yyyyMM")
Sample20231117-1L.zip (8.7 KB)
Regards,
1 Like
vineelag
(vineetha)
November 17, 2023, 12:34am
3
Hi @Yoichi
Thank You!!!
I am Actually Using In This Format of data, Below
And its throwing This We error
Please Kindly Let Me Know!!!
Yoichi
(Yoichi)
November 17, 2023, 12:36am
4
HI,
Can you share your input as file? It’s no problem if dummy data.
Regards,
1 Like
vineelag
(vineetha)
November 17, 2023, 12:50am
5
Sure @Yoichi
data.xlsx (89.4 KB)
Above One Is the Sample File and Taking Column H (Start) And Financial Year Values In Column R(Calendar Month (Manual))
Thank You!!!
Yoichi
(Yoichi)
November 17, 2023, 12:57am
6
How about the following?
CurrentRow("Calendar Month (Manual)") = CDate(CurrentRow("Start").ToString).AddMonths(9).ToString("yyyyMM")
Sample
Sample20231117-1L (2).zip (84.5 KB)
Regards,
1 Like
vineelag
(vineetha)
November 17, 2023, 1:13am
7
@Yoichi , That’s Why Your Most Valuable Person(MVP), Its Working !!!
Thank You @Yoichi
1 Like
system
(system)
Closed
November 20, 2023, 1:13am
8
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.