Search code examples
excelexcel-formulaexcel-2010excel-2007

how to Convert EST time to IST time in excel?


I have a requirement where I get the data in Excel column like "7/12/2017 3:00:00 AM" (EST timing). Now I need to convert it into IST time of the same format.


Solution

  • As Indian Standard Time is 9 hours and 30 minutes ahead of Eastern Time, use the following formula

    =A1+TIME(9,30,0)
    

    See image for reference.

    enter image description here