• 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

    How can I split an address into multiple cells.

    Something like this?
  2. Belleke

    I'm looking for a Macro to issue a warning when closing an excel workbook.

    Glad to help.:) but all the credit goes to Logit.
  3. Belleke

    I'm looking for a Macro to issue a warning when closing an excel workbook.

    You placed the code in the sheet module,you have to place it in the ThisWorkbook module as stated in post #4 (see screenshot)
  4. Belleke

    adding extra minutes to time

    Hi Peter, Thank you for your contribution
  5. Belleke

    adding extra minutes to time

    Perfect, thank you so much for your time.:awesome:
  6. Belleke

    adding extra minutes to time

    Rounded before adding time You gave me the perfect formula to add 10 minutes extra,I need the same formulas for 9,18 and 60 minutes as example, with your given formula if the cell is 2:00, the end result is 2:20 (2 times 10 minutes) what is 100% correct but I want also for example to add 60...
  7. Belleke

    adding extra minutes to time

    Yes,this is what I am looking for. Except there are 3 more: 9 mintes,18 minutes and 60 minutes They can be separate formulas, they don't have to be combined. Extra info: the hours are round up (on 5 minutes)
  8. Belleke

    adding extra minutes to time

    I have a result in a cell formated as uu:mm, for example 3:00, Then I need to add 3 times 10 minutes in another cell result should be 3:30 in a another cell. If the first cell is 2:30 then the result should be 2:55 (2 times 10 minutes and 1 time 5 minutes) The goal is when somebody works on a...
  9. Belleke

    How to keep msgbox in front of userform

    @Yodelayheewho I've been out of the loop forr 11 months.(I was in the hospital) I am a bit rusty. I see your question isn't solved yet. I don't remember if there is a solution with msgboxes, but there is sure one when you make your own msgboxes with using homemade userforms that opens the...
  10. Belleke

    Code to add range to Outlook recipient addresses

    Glad to help.:)
  11. Belleke

    Code to add range to Outlook recipient addresses

    Example when you want to choose de emails if you don't have to send to all the adresses. I added and example how your Volunteers page should look like. Sub gandal() ' ' EmailCopy Macro Dim cell As Range Dim rng As Range Dim objOutlook As Object, OutMail As Object Dim strto As...
  12. 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.
  13. Belleke

    Wat did I forgot in this formula?

    Thank you both for the assistance.
  14. 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
  15. 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
  16. 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
  17. Belleke

    deleting spam in both accounts

    Hi, Thank you.
  18. 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...
  19. Belleke

    Copy and paste the data VBA Code

    Glad to help.:)
  20. Belleke

    Copy and paste the data VBA Code

    Like this?
  21. Belleke

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

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

    How to clear the cells only from the table

    Glad to help.:)
  23. 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
  24. 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
  25. Belleke

    VBA Place Current Month Number in Certain Sheet Cell

    Glad to help.:)
Back
Top