Search:

Type: Posts; User: fba1

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    3,933

    Re: Excel Bubble Chart X Axis

    I figured as much :(, but thanks a lot for your help I appreciate it.
  2. Replies
    4
    Views
    546

    Re: bookmarks and Tables

    No worries usually just takes a second glance to see stuff like that, happens all the time ;)
  3. Replies
    10
    Views
    3,933

    Re: Excel Bubble Chart X Axis

    Thanks koolsid unfortunately the dates that are plotted are incorrect as in which are in the format of 00-01-1900. Not sure if you are able to replicate this on your side or not but may have to do...
  4. Replies
    10
    Views
    3,933

    Re: Excel Bubble Chart X Axis

    No worries I'm about out of here myself thanks again.
  5. Replies
    10
    Views
    3,933

    Re: Excel Bubble Chart X Axis

    No problem thanks for the assistance, unfortunately I cant send the exact project since the data pulls from a DB but I have made a mock up of how the array is built and how the rest of the code...
  6. Replies
    10
    Views
    3,933

    Re: Excel Bubble Chart X Axis

    Didn't think to check that but unfortunately it did not work.
  7. Replies
    4
    Views
    546

    Re: bookmarks and Tables

    Question on: frmendyear.txtto.Text

    frmendyear = The name of your userform
    txtto = The object name you are using (textbox)

    The reason I ask is that errors is saying it cant find the object you...
  8. Replies
    9
    Views
    10,740

    Re: [Excel 2003] Connecting to Citrix Server

    Haven't had the chance to play with Citrix from a coding side but have you checked out the Citrix forums just out of curiosity?

    http://forums.citrix.com
  9. Replies
    1
    Views
    584

    Re: splitting up a document based on the styles

    From what I am aware of a word document (assuming this is what you are referring to) sets the whole document to the style you choose and not sections. However if I am wrong I'm sure you can do a for...
  10. Replies
    10
    Views
    3,933

    [RESOLVED] Excel Bubble Chart X Axis

    Hello all been a while since I've been on the forums, but ran into a rather annoying issue with bubble charts in excel.

    Basically I am taking 4 series of data Name, Y Axis, X Axis, and Bubble Size...
  11. Re: [RESOLVED] Check If Time Value is between Two Times

    Actually it dose not work the way I need it to.

    For Example if the Array is 12:00:00 AM and the StartDate is 8:00:00 PM and the EndDate is 1:00:00 AM it still returns false instead of true.
  12. Re: [RESOLVED] Check If Time Value is between Two Times

    Ahh nice didn't even think about using the TimeSerial function thanks anhn, and shorter more efficient code is always nice :)
  13. Re: Check If Time Value is between Two Times

    LOL nevermind figured it out




    Sub Test()

    Dim timeAry(0 To 47) As Variant
  14. [RESOLVED] Check If Time Value is between Two Times

    Never had to check this before and for some reason its not working the way I want it to.

    Basically I am trying to see if a time from an array is between two times from a SQL query.

    So


    Dim...
  15. Re: [Excel 2007] Creating a series of line charts from a data table

    This should do the trick ;)

    http://www.vbforums.com/showthread.php?p=3310279#post3310279
  16. Replies
    0
    Views
    8,928

    VBA Dynamic Graph From SQL Data

    I have been trying to figure this out for a while and have found my solution, and thought I should share. Basically I was trying to create a graph in excel without having to reference the data from...
  17. Thread: VBA Binary Clock

    by fba1
    Replies
    2
    Views
    8,735

    Re: VBA Binary Clock

    Sweet RobDog I'll remember that for next time :D
  18. Thread: VBA Binary Clock

    by fba1
    Replies
    2
    Views
    8,735

    VBA Binary Clock

    Not really a problem but, more or less sharing :). Basically a co-worker and I were trying to figure out how to make a binary clock in VBA like the one I downloaded to my sprint mogul phone. So spent...
  19. Replies
    2
    Views
    4,737

    Re: check if table existis - ADOX (VBA for EXCEL)

    I use this to check SQL tables should work the same for your purpose


    Private Sub UserForm_Activate()
    Dim cnn As New ADODB.Connection
    Dim rst As New ADODB.Recordset
    Dim Verify() As Variant
    ...
  20. Replies
    3
    Views
    466

    Re: Subtracting Date/Time

    LOL your AWESOME I knew I was over complicating it. Thank you very much it works perfect. :thumb:
  21. Re: VBA, Lock access window size, disable max button?

    Maybe http://www.vbforums.com/showthread.php?t=527468
  22. Re: (Excel 2003) - Help with Subscript out of range (Error 9) message

    Also submitting your code will possibly help us understand what you are trying to do and you may be doing it inefficiently no offense (I actually do it all the time :)) which could be causing the...
  23. Re: (Excel 2003) - Help with Subscript out of range (Error 9) message

    Have you looked at the users machine thats having the issue and stepped through the code (F8) to see where it is breaking. I know a lot of things can come into play such as the user not having the...
  24. Re: (Excel 2003) - Help with Subscript out of range (Error 9) message

    Wow sorry not all there today lol, what kind of array do you have going on in your code?
  25. Replies
    3
    Views
    466

    Re: Subtracting Date/Time

    Sorry if it helps this is what it looks like compiling the values.

    Dim enddate, startdate, enddate2, startdate2, userenddate, userstartdate As Date
    Dim theday, thehour, theminute As Long

    If...
  26. Replies
    3
    Views
    466

    [RESOLVED] Subtracting Date/Time

    Hello all,

    I have ran into a rather annoying result from an application I am creating.

    Dim enddate, startdate, enddate2, startdate2, userenddate, userstartdate As Date
    Dim theday,...
  27. Replies
    9
    Views
    868

    Re: [RESOLVED] Date and Time Difference Non VBA

    Thanks Si didn't even thing about using INT ill have to remember that next time. Been a long time since I've read the excel bible but then again haven't really played a lot with excel until as of...
  28. Replies
    9
    Views
    868

    Re: Date and Time Difference Non VBA

    Woot Resolved...

    Thanks RobDog you made me see a new route :)

    =DAYS360(B9,C9)&" Day(s) "&TEXT(C9-B9,"h") &" Hour(s) "& LEFT(TEXT(C9-B9,"mm.0"),2) &" Minute(s)"
  29. Replies
    9
    Views
    868

    Re: Date and Time Difference Non VBA

    Hmm tried this

    =DAYS360(B9,C9)&" Day(s) "&TEXT(C9-B9,"h") &" Hour(s) "& TEXT(C9-B9,"m.0") &" Minute(s)" and got this 34 Day(s) 13 Hour(s) 51.0 Minute(s) but trying to get rid of that .0 but if i...
  30. Replies
    9
    Views
    868

    Re: Date and Time Difference Non VBA

    Yeah I looked back at the data and realized it was wrong in the hour and minute area. I tried the formula I posted today to see if I could fix the issue but I was originally using...

    =C9-B9
    ...
  31. Replies
    9
    Views
    868

    [RESOLVED] Date and Time Difference Non VBA

    Morning everyone,

    I have a non VBA question this time about finding the difference between two different cells which are in the format of m/d/yy h:mm AM/PM.

    Basically I have the following...
  32. Replies
    0
    Views
    628

    Crystal SQL statement to Excel VBA SQL

    Anyone know how to convert this to work with Excel VBA SQL? More or less si_the_geek lol


    local numbervar LNumStartOfText;
    local numbervar LNumTotalCharacters;
    local stringVar LStrOutputText;
    ...
  33. Replies
    4
    Views
    1,123

    Re: Create a chart from SQL data?

    Hmm thanks for the reply unfortunately I tried to test your code just to see what it did and I get bad name references. Do you by any chance have a document with it in it so I may see a general...
  34. Replies
    11
    Views
    990

    Re: barnes and noble doesn't know my browser

    Have you cross referenced the settings for the computer that gets the redirect and the one that does not. It would have to be some setting in IE doing that to you.
  35. Replies
    26
    Views
    2,308

    Re: SQL combine records

    Well I didn't do exactly what you said because removing the as 'starttime' made the export fail.

    So what I did is removed the whole conversion on the Select statement and now everything is in...
  36. Replies
    4
    Views
    1,123

    Create a chart from SQL data?

    I have been searching for this for some time and have not come up with what I need.

    Basically what I want to do is in Excel using VBA query a database Access or SQL and take that data and create a...
  37. Replies
    26
    Views
    2,308

    Re: SQL combine records

    its a field
  38. Replies
    26
    Views
    2,308

    Re: SQL combine records

    Almost lol


    strSQL = _
    "SELECT Convert(varchar, Row_Date, 101) as 'Row_Date', var(split), Convert(varchar, starttime) as 'starttime', " _
    & "sum(acdcalls) as 'Answered',...
  39. Replies
    26
    Views
    2,308

    Re: SQL combine records

    Yeah unfortunately I only have read access to this database so I cant make any changes. If I could I wouldent bother with these long SQL statements ;) Ill try that conversion see what happends
    ...
  40. Replies
    3
    Views
    442

    Re: Exit a procedure while running

    AppActivate "Microsoft Excel"
Results 1 to 40 of 120
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width