cancel
Showing results for 
Search instead for 
Did you mean: 
steveb144
Great Neighbour / Super Voisin

Hi All

 

Any chance of getting a button/link added to the usage history to export to a CSV?

you already have the dataset. 

much better than 15 lines per page, over 90 days.

 

 

8 Comments
jeffster1970
Model Citizen / Citoyen Modèle

I think that's an awesome idea!

MoreYummy
Mayor / Maire

It is good idea.  However i doubt they will have it anytime soon.   Smiley Happy

kav2001c
Mayor / Maire

It seems like such a simple request but never gets accepted

 

srlawren
Retired Oracle / Oracle Retraité

It's been suggested a few times already.  @steveb144 please don't hold your breath, I don't want to see anyone turn blue.

stonechucker
Mayor / Maire

With proper time stamps would be nice too.  very difficult to determine time of day without a 24 hour clock, or AM and PM listed.

marsbar
Great Citizen / Super Citoyen

@stonechucker 

 

 

 

 

Yup and the date format is atorcious as well and can't be recognized by the version of Excel I'm using, so much so that I ended up building my own parser in vba code:

 

 

 

 

 

Public Function convertDate(text As String) As Date
Dim DateArray() As String
DateArray = Split(text, "/")
DayPart = DateArray(0)
MonthPart = DateArray(1)
YearPart = Left(DateArray(2), 4)
Select Case MonthPart
Case "01", "1"
mon = "Jan"
Case "02", "2"
mon = "Feb"
Case "03", "3"
mon = "Mar"
Case "04", "4"
mon = "Apr"
Case "05", "5"
mon = "May"
Case "06", "6"
mon = "Jun"
Case "07", "7"
mon = "Jul"
Case "08", "8"
mon = "Aug"
Case "09", "9"
mon = "Sep"
Case "10"
mon = "Oct"
Case "11"
mon = "Nov"
Case "12"
mon = "Dec"
End Select
convertDate = CDate(DayPart & " " & mon & " " & YearPart)
End Function

steveb144
Great Neighbour / Super Voisin

Nice, anyone who codes can follow no matter the language. 

You wouldn’t think you’d need to go that far for a paid service,but ... 

marsbar
Great Citizen / Super Citoyen

I also noticed that online only kept history for like 3 months. Forgot to donwload data from July onwards and now I can't get detailed call logs for dates before Sep 22nd (3 months before today) anymore. Would really like an export all logs to CSV function (I use it so that I can track who I'm calling, when I'm calling and look up which days of the weeks I used too much data etc).

Need Help? Let's chat.