• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Search results

  1. N

    Loop to hide checkboxes based on cell value

    For the file you've attached... With your check boxes nicely arranged numerically like that, this works for me Sub ChkBoxHide() Dim i As Long For i = 11 To 40 If Range("A" & i).Value = "" Then ActiveSheet.CheckBoxes("Check Box " & i - 10).Visible = False Else...
  2. N

    Problem to display information in TextBox

    Apparently that was just a waste of time. Good luck with your project.
  3. N

    Problem to display information in TextBox

    This addresses only what you've asked. you 're only looping through the first 3 columns of the listbox and it needs to be 4, and your textbox names are not sequential. Try this Private Sub LB_00_Click() ' the LISTBOX For I = 0 To 3 If I < 3 Then Me("T_0" & I) = LB_00.Column(I)...
  4. N

    Add Recurring Transactions Each Month

    You're welcome, glad I could help.
  5. N

    Add Recurring Transactions Each Month

    As I understand the OP, why not store the date when the macro is run and at the beginning of the macro compare month of current date with month of stored date ? This stores to F1 to be behind the shape. Sub MoveTransX() Dim i As Long, lr As Long, lr2 As Long Dim s1 As Worksheet, s2 As...
  6. N

    vba Filter as you Type- data range

    The five Emma are spread over 3 columns. You can use Advanced Filter. Have added another sheet which holds the criteria range. You really shouldn't have blank records in your table. Private Sub TextBox1_Change() Dim crit As String, critRng As Range If Len(TextBox1.Text) = 0 Then 'required to...
  7. N

    How to Create Cross Hair for active cell

    Not only noticed, but expected. I believe running any macro that does anything to a sheet automatically clears the UNDO stack. I'll keep watching this thread in hopes of finding out why (or how) in post #8 p45cal indicates he was allowed to undo/redo.
  8. N

    How to Create Cross Hair for active cell

    This is what I found online... It's a Rick Rothstein response to a somewhat similiar question a couple years ago. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Application.ScreenUpdating = False Application.FindFormat.Clear Application.ReplaceFormat.Clear...
  9. N

    Disable Start Time Button

    Your ComboBox4_Change calls CHECK_INPUTRFP which starts with Me.CommandButton5.Enabled = False and second to last line is Me.CommandButton5.Enabled = True
  10. N

    How to empty row sheet depending on combobox value

    Interesting.... you write to offset(rowcounter, 7) using a loop that increments rowcounter each time, presumably to write to more rows, and your resolution clears rowcounter only. Am I missing something ?
  11. N

    mthly timesheet by weekdays (M-F) & autofill project names row at time

    This looks interesting... but has been posted for quite some time. Has this project advanced any? Been posted elsewhere? Been abandoned?
  12. N

    tip pool worksheet

    @ robfl22 You might want to check your cross posts for another suggested solution.
  13. N

    excel userform vba calendar control

    Maybe have a look at Trevor Eyre's calendar form date picker.
  14. N

    VBA run macro on cell click in certain column

    Not exactly what you were using but may be of use. Makes use of a user form calendar from Trevor Eyre. (Credits included with code) Simply imported his user form and module then this as the SelectionChange event. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim dte As Date...
  15. N

    macro to get rid of part of formula

    That's quite the acquaintance you have there... http://www.mrexcel.com/forum/excel-questions/862089-getting-rid-part-formula-using-macro.html
  16. N

    Macro recognising a a change in a cell

    Perhaps you are using the wrong event for what you want or perhaps you need both. Worksheet_SelectionChange applies to the cell you are going into. Worksheet_Change applies to the cell you are coming out of.
  17. N

    Private sub but still visible to other subs

    try this instead of making the sub private Sub What_Ever(Optional a As String) The macro can be called as per normal from anywhere but never shows in the Alt+F8 macro dialogue.
  18. N

    Freeze Top Two Rows

    Works for me. Select A3 and freeze panes.
  19. N

    PLEASE HELP : VBA CODE ISSUE WITH PROMPTING AN ACTIVE X CONTROL BOX

    Yes, the F8 part which would have led you to your mistakes.
  20. N

    PLEASE HELP : VBA CODE ISSUE WITH PROMPTING AN ACTIVE X CONTROL BOX

    Right click on the command button => select assign macro => hit delete to eliminate 'DCF AND COMP VBA.xlsm'!CommandButton1_Click from the displayed Macro Name: => click OK Right click on the command button again => CommandButton1_Click will be showing in the Macro Name: => click NEW and put...
Back
Top