Search results

  1. Z

    Solved Why repeat the last Excel sheet row twice

    thanks Solved Add -1 to the last of for For i = 0 To listSearch.ListCount -1
  2. Z

    Solved Why repeat the last Excel sheet row twice

    Why repeat the last Excel sheet row twice the code is good but repeat the last row how to prevent from pasting the last row twice For i = 0 To listSearch.ListCount If listSearch.Selected(i) = True Then ActiveWorkbook.Sheets("Database").Activate...
  3. Z

    Solved Why this code not work

    did you forget apply your change you paste same code just remember your
  4. Z

    Solved Why this code not work

    I changed the code but also display this error If UCase(C.Value) & "" Like "*" & UCase(txtSearchABBACCT.Value) & "*" And CDate(Worksheets("Database").Cells(i, 2).Value) >= CDate(Me.txtFrom.Value) And CDate(Worksheets("Database").Cells(i, 2).Value) <= CDate(Me.txtTo.Value) Then
  5. Z

    Solved special Phone Number

    (y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)(y)
  6. Z

    Solved Why this code not work

    :) what should i do?
  7. Z

    Solved Why this code not work

    Hello the problem does not add an item the problem does not get the correct data
  8. Z

    Calculation not work

    I want subtract to cell using VBA but not work Application.ScreenUpdating = False Dim lr As Long lr = Worksheets("Database").Range("C" & Rows.Count).End(xlUp).Row Dim i As Integer For i = 2 To lr Worksheets("Database").Range("W" & i).Value = Worksheets("Database").Range("T", i).Value -...
  9. Z

    Solved special Phone Number

    how can I format range special phone number what is the code Worksheets("Database").Range("N" & i).NumberFormat = Special Phone Number
  10. Z

    Solved Why this code not work

    when Adding from and to the text box to the code not work this line And CDate(Worksheets("Database").Cells(i, "B").Value) >= CDate(Me.txtFrom.Value) And CDate(Worksheets("Database").Cells(i, "B").Value) <= CDate(Me.txtTo.Value) Then On Error Resume Next listSearch.clear If...
  11. Z

    Mail Merge from Excel

    friend I have a list with true false from Excel I want merge field «Disclosure_Required» change true to Yes and false to No In word How can I do that I can edit merge field in word just give me the formula thank you so much
  12. Z

    Solved Insert record from table to table one by one

    hello friends Have a great day explaining my problem in excel attached ========================== if an entire row duplicated Not included version ========================== Thank you so much in advance
  13. Z

    Transform

    Thank you so much for your help and assistance I will check the project
  14. Z

    Transform

    Hello friends I need to transform the attached table to new table You will see explain in Excel Source Table Transform Table How can I do that using query Thank you in advance for your help
  15. Z

    local host or online host

    Working with Online MS SQL is good because I don't need a Team viewer. work any time I prefer asking the client about DB is Online or Local Not good (I think) Show you that you don't have any experience
  16. Z

    local host or online host

    I don't have a specific connection string if possible general rules
  17. Z

    local host or online host

    Can you explain more
  18. Z

    local host or online host

    Hello Is there any easy way to know if MS SQL DBis hosted locally or online host Thank you so much
  19. Z

    How can edit the code to show result in query

    Thanks (y)(y)(y)(y)(y)(y)(y)(y)(y)(y)
  20. Z

    How can edit the code to show result in query

    Private Sub Command2_Click() On Error Resume Next StrListItem_ = "" Dim ctl Set ctl = Me!List0 Dim i As Integer For Each varItem In ctl.ItemsSelected StrListItem_ = StrListItem_ & "," & Me.List0.ItemData(varItem)...
Back
Top Bottom