Hi All,
I have one date filed and i just export this value from Notes document to Excel file but in notes document it show dd-mm-yy format and when you try to export same to excel it is converted to mm-dd-yy format and i have no idea why this changed i have already try formatting and all this possibility but not working , My code is below
Sdate = Cstr(Doc.FromDate(0)) - It show dd-mm-yyy
BkgDay = Left(Sdate, 2)
BkgMm = Mid(Sdate, 4, 2)
BkgYy = Right(Sdate, 2)
xlObj.Cells(Row, 4).value = BkgDay+“-”+Bkgmm+“-”+BkgYy - Problem here it show in excel file mm-dd-yy