【Zoho CRM】西暦を自動的に和暦表示にできますか?

【Zoho CRM】西暦を自動的に和暦表示にできますか?

カスタムで以下のような数式項目を作成することで、自動的に西暦表示の日付を和暦表示にすることは可能です。

以下、西暦を和暦表示にする数式サンプルです。
以下の「Contacts」を任意のタブ名に置き換え、「Date of Birth」を任意の日付項目名に置き換えていただければと存じます。
If(Year(${Contacts.Date of Birth})>0,
 Concat(
 If(Datecomp(${Contacts.Date of Birth},Newdate(2019,04,30,11,59,'PM'))>0
 ,Replace(Concat('令和',Tostring(Year(${Contacts.Date of Birth})-2018),'年'),'.0','')
 ,If(Datecomp(${Contacts.Date of Birth},Newdate(1989,01,07,11,59,'PM'))>0
 ,Replace(Concat('平成',Tostring(Year(${Contacts.Date of Birth})-1988),'年'),'.0','')
 ,Replace(Concat('昭和',Tostring(Year(${Contacts.Date of Birth})-1925),'年'),'.0','')
 )
 )
 ,Tostring(Month(${Contacts.Date of Birth}))
 ,'月'
 ,Tostring(Dayofmonth(${Contacts.Date of Birth}))
 ,'日'
 )
,'')