+ Reply to Thread
Results 1 to 6 of 6

if cell value is hijri or gregorian date?

  1. #1
    Registered User
    Join Date
    10-05-2011
    Location
    Philippines
    MS-Off Ver
    Excel 2007
    Posts
    42

    if cell value is hijri or gregorian date?

    Good day!

    I need help on how to identify if date value in a cell is Hijri or Gregorian? If the date value is Hijri date format, the next column cell value will be true, If the date value is Gregorian date format, the next column cell value will be false.

    Thank you!

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,447

    Re: if cell value is hijri or gregorian date?

    I think you'll need to post a sample workbook with examples of the dates ... ideally, all the months.

    I suspect that a Gregorian date will show up as a number and a hijri date might be text but that's just a guess.


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Registered User
    Join Date
    10-05-2011
    Location
    Philippines
    MS-Off Ver
    Excel 2007
    Posts
    42

    Smile Re: if cell value is hijri or gregorian date?

    thank you TMS! Attached is the sample workbook!

    Maybe this solution will work?
    Please Login or Register  to view this content.
    Please correct if my idea is wrong!

    Thank you!
    Attached Files Attached Files

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,447

    Re: if cell value is hijri or gregorian date?

    For your formula, you could use:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Or, for a more accurate calculation (text string output):
    Formula: copy to clipboard
    Please Login or Register  to view this content.




    A
    B
    C
    D
    E
    F
    1
    EMP_NAME
    FILENO
    BIRTHDATE
    AGE
    2
    Employee 1
    546
    03/02/1977
    37
    37 Years, 11 Months, 4 Days
    3
    Employee 2
    858
    1/7/1397
    hijri date
    hijri date
    error because date is hijri/arabic
    4
    Employee 3
    549
    30/8/1978
    36
    36 Years, 4 Months, 8 Days
    5
    Employee 4
    554
    03/02/1978
    36
    36 Years, 11 Months, 4 Days
    6
    Employee 1
    770
    19/11/1978
    36
    36 Years, 1 Months, 19 Days
    7
    Employee 1
    638
    15/10/1979
    35
    35 Years, 2 Months, 23 Days
    8
    Employee 1
    764
    13/2/1979
    35
    35 Years, 10 Months, 25 Days
    9
    Employee 1
    843
    20/2/1399
    hijri date
    hijri date
    error because date is hijri/arabic
    10
    Employee 1
    310
    2/6/1400
    hijri date
    hijri date
    error because date is hijri/arabic
    11
    Employee 1
    568
    23/1/1980
    34
    34 Years, 11 Months, 15 Days
    12
    Employee 1
    804
    06/04/1980
    34
    34 Years, 9 Months, 1 Days
    13
    14
    15
    D2:
    =IFERROR(INT((TODAY()-C2)/365.25),"hijri date")
    16
    E2:
    =IFERROR(DATEDIF(C2,TODAY(),"Y")&" Years, "&DATEDIF(C2,TODAY(),"YM")&
    " Months, "&DATEDIF(C2,TODAY(),"MD")&" Days","hijri date")
    17



    Regards, TMS

  5. #5
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,447

    Re: if cell value is hijri or gregorian date?

    I found the following code in an Access Forum and it works, unchanged, in Excel 2007.

    Please Login or Register  to view this content.

    Assuming that the calculation is accurate (which I can't really check), this should meet your needs.

    See the attached updated sample workbook.

    Regards, TMS

  6. #6
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,447

    Re: if cell value is hijri or gregorian date?

    Having read the other thread in more detail, I understand that the converting from hijri dates to Gregorian dates can "sometimes/normally" be a day out.

    However, there were reports that the calculation could be two days out.

    Don't know if this is a big deal or not.

    Regards, TMS

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. identify if a date in a cell is hijri or gregorian..?
    By adbasanta in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-06-2015, 06:41 AM
  2. identify if a date in a cell is hijri or gregorian..?
    By adbasanta in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-06-2015, 06:13 AM
  3. convert from Hijri Date to Gregorian
    By noexcel=badwork in forum Excel General
    Replies: 7
    Last Post: 11-04-2014, 03:21 AM
  4. Converting Hijri Date to Gregorian Date from another cell
    By brmuse1 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-20-2014, 12:46 AM
  5. [SOLVED] Gregorian Date from Hijri
    By Abdul in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-16-2006, 12:25 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1