• 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

    This workbook path ? So if the folder is "C\Test\" than the file has to be on the C, the file has to go in my documents.
  2. Belleke

    using multiple image extensions

    My workbook reflect exact what I want. Simple as bonjour. Photos's in a folder, Names in column M (with or without extention, doesn't matter I can change that)and photo's should be added in column N I don't think you can figure it out yourself,otherwise it is a small matter of posting a small...
  3. Belleke

    using multiple image extensions

    Can you post a working example with the coorect phot names and path,I drives me nuts.
  4. Belleke

    using multiple image extensions

    They hadn't an extention, I added them to test if it works then,but also nada
  5. Belleke

    using multiple image extensions

    Why you think that,what can be the error?
  6. Belleke

    using multiple image extensions

    Example with file and folder with 3 Photo's
  7. Belleke

    using multiple image extensions

    I tryed in the immedate window, when i saved the file code and window was gone. Worksheet test is my bad, it has to be Sheet 1 Because nothing works and I don't get anywere I am getting nervous.. In the real file I don't make these mistakes naming the sheet wrong
  8. Belleke

    using multiple image extensions

    Example
  9. Belleke

    using multiple image extensions

    Nothing happens??
  10. Belleke

    using multiple image extensions

    ????? Euh
  11. Belleke

    Code to hide sheets

    Sub VeryHiddenSheet() Dim e For Each e In Array("D", "E", "F", "G", "H") ThisWorkbook.Sheets(e).Visible = xlVeryHidden Next e End Sub
  12. Belleke

    using multiple image extensions

    No go.:( The names of the pictures are in Column M with extension like chandoo.jpg this is the code Sub belle() Dim Cell As Range, Path As String Path = "C:\test\" With Sheets("test") For Each Cell In .Range("M2:M" & .Cells(.Rows.Count, 13).End(xlUp).Row) For Each pic In Array(".gif"...
  13. Belleke

    using multiple image extensions

    Thanks so far, I work on it tommorrow.
  14. Belleke

    using multiple image extensions

    You mean there is nothing wrong with the code?
  15. Belleke

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

    My bad, it is a table. I have to look at the code, but this will be for tomorrow.
  16. Belleke

    Run-Time Error '424': Object Required

    Glad to help.
  17. Belleke

    using multiple image extensions

    Now I have this. For Each Cell In .Range("M2:M" & .Cells(.Rows.Count, 13).End(xlUp).Row) For Each pic In Array(".gif", ".jpg") If Dir(Path & Cell & pic) <> "" Then With .Pictures.Insert(Path & Cell & pic) .ShapeRange.LockAspectRatio = msoFalse...
  18. Belleke

    using multiple image extensions

    For each is not the problem, how to do it with the pics instead of cells,I don't want to use the blocks for every extention. An example of a for each in a function doen't help at aal.
  19. Belleke

    using multiple image extensions

    I don't know how to proceed.
  20. Belleke

    Run-Time Error '424': Object Required

    a = Application.WorksheetFunction.CountIf(Range("D:D"), Me.TextShopOrderNumber.Text)
  21. Belleke

    using multiple image extensions

    Yes you wrote it, the only problem is how to do it,that is the reason why I asked the question.
  22. Belleke

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

    NO, your data is not a table, it is is a defined name range. The only table in your example is the to do list.
  23. Belleke

    using multiple image extensions

    Thanks for your reply. I was wondering if there is another way, shorter not a code block for every extension, Thanks
  24. Belleke

    using multiple image extensions

    This is the complete code. I want to expand this code so I can use different extensions. Jpg, Gif,Png Any body an idee? Sub belle() Dim Cell As Range, Path As String Path = "C:\Test\" With Sheets("Sheet1") For Each Cell In .Range("M2:M" & .Cells(.Rows.Count, 13).End(xlUp).Row) If...
Back
Top