x = "2:01" debug.print format (x,"0# ##") I get 00 00 Shouldn't this return 02 01 ?? Thanks - Kirk
K kirkm Oct 17, 2008 #1 x = "2:01" debug.print format (x,"0# ##") I get 00 00 Shouldn't this return 02 01 ?? Thanks - Kirk
M Mike H Oct 17, 2008 #3 Kirk, What is "2:01" a time? if so Debug.Print Format(x, "hh:mm") returns 02:01 Debug.Print Format(x, "hh mm") returns 02 01 Mike
Kirk, What is "2:01" a time? if so Debug.Print Format(x, "hh:mm") returns 02:01 Debug.Print Format(x, "hh mm") returns 02 01 Mike