I possess a dataset with dates in the Jalali calendar format. I have developed an ado file to convert the date format from Jalali to Gregorian, as demonstrated below:
Now, my objective is to add a new column in the dataset that displays the corresponding Gregorian date for each entry. But I got error:
Code:
. j2g 14011209 20230228 . g2j 20230228 14011209
Code:
. gen requestDate_Grg = j2g(requestDate) unknown function j2g()


Comment