• 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

    Wat did I forgot in this formula?

    @Marc L I was in the hospital for 11 months, a lot of Excel Logic was lost there, hope it doesn't happens to you.
  2. Belleke

    Wat did I forgot in this formula?

    Thank you both for the assistance.
  3. Belleke

    Wat did I forgot in this formula?

    =IF(WEEKDAY(TODAY(),2)=6,TODAY()-1) IF(WEEKDAY(TODAY(),2)=7,TODAY()-2) I want to combine these 2 so that if it is weekend cell always returns last friday
  4. Belleke

    Creating a keyboard shortcut on a new user form

    Hi Bob, Glad to help. Let me know if your problem is solved. What I meant by: it is the same in Excel, you just have to enter a letter just like in Access
  5. Belleke

    Creating a keyboard shortcut on a new user form

    Hi Bob It is the same in Excel. Use the accelerator property see example. (shortcut for OptionButton2) The shortcut is Alt + q
  6. Belleke

    deleting spam in both accounts

    Hi, Thank you.
  7. Belleke

    deleting spam in both accounts

    Hi, I have this code to empty junkfolders in outlook. Unfortunately, it only works for the default account, what can I do to let it work for both accounts? Thanks. Sub EmptyDeletedItems() Dim olApp As Outlook.Application Dim olNS As Outlook.NameSpace Dim objExpl As Outlook.Explorer Dim mboxCount...
  8. Belleke

    Copy and paste the data VBA Code

    Glad to help.:)
  9. Belleke

    Copy and paste the data VBA Code

    Like this?
  10. Belleke

    How to convert a financial statement which is in pdf need to convert to Excel?

    This PDF in Excel. Hope it helps.
  11. Belleke

    How to clear the cells only from the table

    Glad to help.:)
  12. Belleke

    How to clear the cells only from the table

    Hi, Like this? Sub CleanCells() For i = 3 To 17 Sheets("Plan1").ListObjects("Tabela1").ListColumns(i).DataBodyRange.ClearContents Next i For i = 24 To 28 Sheets("Plan1").ListObjects("Tabela1").ListColumns(i).DataBodyRange.ClearContents Next i End Sub
  13. Belleke

    How to clear the cells only from the table

    Do you mean this? Sub CleanCells() With Sheets("Plan1").ListObjects("Tabela1") If Not .DataBodyRange Is Nothing Then .DataBodyRange.ClearContents End With End Sub
  14. Belleke

    VBA Place Current Month Number in Certain Sheet Cell

    Glad to help.:)
  15. Belleke

    VBA Place Current Month Number in Certain Sheet Cell

    Hi, Set cell format to standard or number.
  16. Belleke

    VBA Place Current Month Number in Certain Sheet Cell

    Code goes in ThisWorkbook Event Private Sub Workbook_Open() With Sheets("Calendar") .Select .Range("E6").Value = Month(Date) End With End Sub
  17. Belleke

    ActiveX ListBox to be populated

    I guess you mean something like this? Make your choises in list 1 and 2.
  18. Belleke

    VBA Used Column range

    This remark pisses me off, maybe in Paris it is basic, for most users this is not basic. Respect please!
  19. Belleke

    VBA Used Column range

    Glad to help.:)
  20. Belleke

    VBA Used Column range

    Sub Task_Cnt() Dim ANSYS As Integer, MATLAB As Integer, MPASM As Integer For Each c In Sheets("Sheet1").UsedRange.Columns(1).Cells If c.Value = "Ansys" Then ANSYS = ANSYS + 1 If c.Value = "Matlab" Then MATLAB = MATLAB + 1 If c.Value = "Mpasm" Then MPASM = MPASM + 1 Next c MsgBox...
  21. Belleke

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

    I was working on your file file, but my wife says I have to do the dishes now and then;), to finish it it takes a bit of time. I use short names T_00,T_01 etc.. so it is easy to use a loop (For 0 to 10 for example) You are right, the short names are almost the same as the columns, but I start...
  22. Belleke

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

    Everybody has to learn,you cant't run before walking.
  23. Belleke

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

    I been looking in your code,the formulas are added but deleted again, I can't find why. There is such a bunch of crap in your codes,sorry. A starter up to column 65.
  24. Belleke

    I need Assistance to display information and copy to clipboard.

    Try the button mail just for fun.
Back
Top