• 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. Belleke

    using multiple image extensions

    As usual with Marc L much cackling little egg
  2. Belleke

    using multiple image extensions

    Hi Marc can you explain a bit more what you mean.
  3. Belleke

    using multiple image extensions

    How can i change this code so it works for jpg and gif? If Dir(Path & Cell & ".jpg") <> "" Then With .Pictures.Insert(Path & Cell & ".jpg") Thanks in advance
  4. Belleke

    Delete rows but not specific column

    Try this. This will delete all rows below the last value in column B Sub Belle() Dim lastRow As Long Dim row As Long Dim temp As String ' insert your sheet name here With ThisWorkbook.Worksheets("Delete.Rows") lastRow = .Cells(.Rows.Count, "A").End(xlUp).row ' you can change the starting...
  5. Belleke

    VBA UserForm - Skip Form Fields, Apply Formulas to New Rows on Data Table

    Problem 1: In the properties set tabstop on false and locked on true where applicable. Problem 2: Use a real table instead of Defined Name Range for your mastersheet then the Formulas will be added automaticly.
  6. Belleke

    VBA for selecting for rows A to I, until value

    A to I are not rows but columns. Your question is not clear.
  7. Belleke

    UserForm Entries Make Them Case Insensitive

    I looked at your questions, if you give me a few days, I gonna rework your userform.
  8. Belleke

    UserForm Entries Make Them Case Insensitive

    Are there a lot of lower case textboxes.
  9. Belleke

    UserForm Entries Make Them Case Insensitive

    You can try that, but instead of the Change event use the AfterUpdate event.
  10. Belleke

    UserForm Entries Make Them Case Insensitive

    This is correct.
  11. Belleke

    UserForm Entries Make Them Case Insensitive

    Yes, this is correct
  12. Belleke

    UserForm Entries Make Them Case Insensitive

    Yes, indeed. Don't forget to add End Sub at the end.
  13. Belleke

    UserForm Entries Make Them Case Insensitive

    Yes it does.
  14. Belleke

    UserForm Entries Make Them Case Insensitive

    Off topic All this TextPrefix = "" TextE10Status = "" TextSuffix = "" TextShopOrderNumber = "" TextEmailSubjectLine = "" TextNotes = "" TextStage = "" TextStartDate = "" TextStageDue = "" TextEndDate = "" TextProposalNumber = "" TextSalespersonInitials = "" TextSalesperson = ""...
  15. Belleke

    UserForm Entries Make Them Case Insensitive

    Yes it is possible, but you need to use a class module In the class module Public WithEvents MyTBoxes As MSForms.TextBox Private Sub MyTBoxes_Change() With Me.MyTBoxes .Text = UCase(.Text) End With End Sub Then in your Userform code Dim colTBoxes As New Collection Private Sub...
  16. Belleke

    UserForm Entries Make Them Case Insensitive

    Add this code in the your data entry form. (masterform) Private Sub TextShopOrderNumber_Change() TextShopOrderNumber.Text = UCase(TextShopOrderNumber.Text) End Sub
  17. Belleke

    Seperate Highlighted Data into different sheet

    A starter. Sub Belle() Dim i As Long For i = Cells(Rows.Count, 12).End(xlUp).Row To 2 Step -1 If Cells(i, 12) = "Review" Then Range("A" & i & ":AW" & i).Copy Sheets("Review Sheet").Cells(Rows.Count, 1).End(xlUp).Offset(1) Cells(i, 12).EntireRow.Delete...
  18. Belleke

    Delete Data

    I don't get it with 2 linses of code,your problem is solved,why not VBA?
  19. Belleke

    Delete Data

    https://www.excelhow.net/deleting-non-highlighted-cells.html
  20. Belleke

    Delete Data

    Like this? Sub clearrng() For Each c In ActiveSheet.Range("F3:V16") If c.Interior.ColorIndex = xlNone Then c.ClearContents Next c End Sub See example
  21. Belleke

    Help to copy data from one sheet to another according to date

    Glad to help and thanks for the feedback:)
  22. Belleke

    I need help to show textbox according to value

    Glad to help.:)
  23. Belleke

    I need help to show textbox according to value

    I couldn't find nothing wrong, just make your sheets visible, click on the chart and hide your sheets again.
  24. Belleke

    I need help to show textbox according to value

    Does this one works?
Back
Top