• 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

    Assistance with listview

    @Fred Wayne , I have a few options to sort a listbox, not a listview, I never use it. See a small example
  2. Belleke

    Assistance with listview

    Is your problem solved?
  3. Belleke

    Assistance with listview

    That is wat I ment with As my native language is not english using the word table was not ideal.
  4. Belleke

    Assistance with listview

    Why don't you sort your table it wil reflect in listview?
  5. Belleke

    Excel question, write update to 2 sheetss

    They are working on it, there should be a solution in a few days.
  6. Belleke

    Excel question, write update to 2 sheetss

    Cross post on a Dutch site with a solution made by a good friend of mine. https://www.piepcomp.nl/threads/exel-regel-terug-plaatsen-na-update.12370/#post-118073
  7. Belleke

    Customer Form

    Thanks for the feedback. :)
  8. Belleke

    Customer Form

    As attachment example with 5 userforms (working) If you change the sheet names then you have to change that in the code of the forms, thats all. For the rest, you can change column headers in the tables and label captions in the forms or the buttons captions in the entry sheet or the titels of...
  9. Belleke

    Customer Form

    Yes you can have multiple forms in the same workbook but the they have to have a different name. an easy way to do this, open a new excelfile, drag that form to the new excelfile, tername the form and drag the form with the new name back to your workbook. (then you can delete the new file) There...
  10. Belleke

    Customer Form

    Yes, it is a table and a table is dynamic. That is possible, in the vba editor drag the userform to another file and copy the data sheet to the this file. Then you can change the names of the column headers and the labels in the form. Anyway we are here to help you.
  11. Belleke

    Customer Form

    LIke this?
  12. Belleke

    Need to remove null values after rotating column

    I don't know ,Is this te result dat you want? I guess that you mean with rotate ,transpose. Maybe post a small example with the result that you want. I do understand French
  13. Belleke

    hide all worksheets having hyperlink except the "MASTER"

    Delete all hyperlinks. Can be done with this code in the active sheet Sub del() ActiveSheet.Hyperlinks.Delete End Sub Next put this code in the ThisWorkbook module Private Sub Workbook_Open() Application.ScreenUpdating = False For Each wsSheet In Worksheets wsSheet.Visible = False...
  14. Belleke

    connecting four userform to display details on the same spreadsheet

    Post your example, I have look to make it in access.
  15. Belleke

    connecting four userform to display details on the same spreadsheet

    The first question is why? Why not make it in Access, it would be a lot easier. But here you have an example.
  16. Belleke

    connecting four userform to display details on the same spreadsheet

    Your sample is ok,just add a new sample with the changed userform
  17. Belleke

    connecting four userform to display details on the same spreadsheet

    If your userform is ready,I can help you with the coding.
  18. Belleke

    Formating

    Right click on the selected area and click Format Cells. Click the Alignment tab at the top of the pop-up menu. In the Alignment tab, open the Horizontal dropdown and select Center Across Selection. Click OK to finalize.
  19. Belleke

    VBA userform not updating to worksheet when save using new code

    Without an example. See if this works for you. Private Sub cmbUpdate_Click() With Sheets("Master") iRow = .Cells.Find(What:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row + 1 .Cells(iRow, 1).Resize(, 20).Value = Array(txtPrefix, cboStatus, txtSuffix, txtShopOrdNum...
  20. Belleke

    connecting four userform to display details on the same spreadsheet

    With your setup it will take al lot of (unnecessary) coding. You should use one userform with tabs as you can see in this picture. Then you won't have problems with multiple submit buttons,finding the right row and any other obstacles
  21. Belleke

    Creating of User Form on Excelsheet

    Does this helps?
  22. Belleke

    Macro: to change gender automatically based on name

    Something like this? The attahment is a zipfile. It contains the excelfile and a folder with some images. Unzip the file and test the excel file. In the excelfile, select a name in the combobox, the rest is filled automatically. Change the pictures with yours, except the 2 that are named male...
  23. Belleke

    Seperate English text from arabic

    Glad to help.:)
  24. Belleke

    Seperate English text from arabic

    Like this?
Back
Top