I found an excel formula that transforms calendar dates into Chinese lunar dates:
=TEXT(A1,"[$-130000]d/m/yyyy")
Say A1 is
08/12/2018
The output of the formula is
2/11/2018
How does this work? What is $
? What is $-130000
? The MS's help article on TEXT
does not mention this.
What formula can I use to do the reverse calculation, i.e. from lunar calendar to solar calendar? $+130000
does not work.
Update
I just came across this answer on SO, which says [$-xxxx] is some locale code, which makes perfect sense to me. However, I cannot find any source says what locale 130000 represents.