tags:

views:

41

answers:

1

Hi friends, i have two columns in xl sheet A row have this format "8:25 PM EDT" and B row have this format "10:12:15 AM" , Now i want to add one hour to the B column if the A column contains the text "EDT" , Please help me to find out the solution Thanks in advance.

+1  A: 

edited: IFERROR(IF(FIND("EDT",A1)>0,B1+TIME(1,0,0)),A1)

coderguy123
But i got the answer as #value ?
Sakthivel
Your 10:12 is probably text. TryIFERROR(IF(FIND("EDT",A1)>0,TIMEVALUE(B1)+TIME(1,0,0)),A1)
Dick Kusleika