Enter the Arabic date and convert to Gregorian

1- I want the entry in Arabic to be in the first box 

2- The corresponding Gregorian date shall be automatically after the introduction of Arab history


ุงู„ุชู‚ุงุท ุงู„ูˆูŠุจ_24-7-2022_204348_www.appsheet.com.jpeg

 

 

 

 

0 2 300
2 REPLIES 2

Difficult... you can't split locales like this (unless there's a way to cheat things)

----------------------------------------------------------------------------------------------------------

Only work around I see would be:

  1. Set your locale as Gregorian (so you can see 123) when looking at the actual dates in a calendar and such
  2. Inside your form, create separate fields for someone to enter:
    1. Day
    2. Month
    3. Year
  3. Make these data-entry fields use ูกูขูฃ for their allowed values
      - As you might have surmised the year entry field will be problematic to get working smoothly

----------------------------------------------------------------------------------------

Only other option I can see, unless I'm missing something (which is possible), would be to set your local so it uses ูกูขูฃ - then create a "display" field that basically SUBSTITUTE()s out all the ูกูขูฃ numbers for their 123 counterparts.

 

SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(
SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(
SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(
  "ูกูขูฃ", 
"ูก", "1"), "ูข", "2"), "ูฃ", "3"),
 "ูค", "4"), "ูฅ", "5"), "ูฆ", "6"),
 "ูง", "7"), "ูจ", "8"), "ูฉ", "9"), "ู ", "0")

 

Top Labels in this Space