• 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

    months in service for a given year.

    Thank you :)
  2. Belleke

    months in service for a given year.

    See example
  3. Belleke

    Error in my code

    @FranckNL are all the fields mandatory?
  4. Belleke

    Error in my code

    @FranckNL I am almost done with my idea, I just have to add some code so that the users have to fill in the mandatory fields, the rest is done.
  5. Belleke

    Error in my code

    It is a bit of work to adjust everything to a good working file, but I am retired, I have time, In a few days you get an good working example.
  6. Belleke

    Error in my code

    Not only your code, an excel example with your 2 sheets with some dummy data.
  7. Belleke

    Error in my code

    Post an excel example, not a PDF.
  8. Belleke

    SUM in Excel without Error

    Thanks for the feedback. :)
  9. Belleke

    SUM in Excel without Error

    Like this? Edit @ p45cal, It does, I forgot to post it:eek:
  10. Belleke

    SUM in Excel without Error

    =SUM(A1:D1)
  11. Belleke

    How To Create A Unique List From Multiple Sheets Using Excel Formula

    Try this for a starter, according to your example. Sub Belle() Dim s1 As Worksheet, ws As Worksheet Set s1 = Sheets("Sheet1") Dim lr As Long Application.ScreenUpdating = False For Each ws In Worksheets If ws.Name <> "Sheet1" Then lr = s1.Range("A" &...
  12. Belleke

    Dependent and dynamic drop down

    Start posting an excel example.
  13. Belleke

    Unable to Break Password in Protected sheet on - MS 365

    Why have you still in the above topics, like The vault or whatever solutions for these questions?
  14. Belleke

    Unable to Break Password in Protected sheet on - MS 365

    I had the same problem somewere in 2015, post your file and I can see what I can do, no promices.
  15. Belleke

    Marco to check data

    Nice example:mad:
  16. Belleke

    VBA for outlook

    Simple answer : No
  17. Belleke

    Change macro to format cell on click Button

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

    Prevent copy paste in excel

    Try this in the ThisWorkbook event. Private Sub Workbook_Activate() Application.CutCopyMode = False Application.OnKey "^c", "" Application.CellDragAndDrop = False End Sub Private Sub Workbook_Deactivate() Application.CellDragAndDrop = True Application.OnKey "^c" Application.CutCopyMode = False...
  19. Belleke

    Change macro to format cell on click Button

    As far as I understand your question give this a try: Sub CreateButton() ActiveSheet.Range("N" & ActiveSheet.Buttons(Application.Caller).TopLeftCell.Row).Select With Selection .Offset(0, -3).Font.Color = RGB(0, 176, 80) .Offset(0, -3).Font.Bold = True .Offset(0, -3).ClearComments...
  20. Belleke

    How can I send an excel sheet in the body of an email?

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

    Search in the second visible column of the LIstBox

    I never use rowsource to populate a listbox but list then it wil work but without a small example?
  22. Belleke

    Search in the second visible column of the LIstBox

    Try this Private Sub T_40_Change() On Error Resume Next lijst = [Table1].value arg = 0 For i = 1 To UBound(lijst) If InStr(1, lijst(i, 2), T_40, vbTextCompare) > 0 Then arg = arg + 1 End If Next i ReDim nwlijst(arg - 1, 40)...
  23. Belleke

    Search in the second visible column of the LIstBox

    What is the column number in your sheet where you want to search? How is de listbox populated?
  24. Belleke

    macro to undo spaces throughout the table

    Try Sub TrimExample1() Dim Rng As Range Set Rng = Sheets("Sheet1").ListObjects(1).Range For Each Cell In Rng Cell.Value = Trim(Cell) Next Cell End Sub
Back
Top