enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Vehicle and Trailer inspection sheets | MrExcel Message Board

    www.mrexcel.com/board/threads/vehicle-and-trailer-inspection-sheets.1091112

    Mar 17, 2019. #2. You need two databases. One to record the history of inspections per trailer and one to keep the status of the trailer. The status DB is going to show the last inspection and the next inspection date. You can create Conditional Formatting on the Status DB to show upcoming inspections with a certain date range.

  3. Vehicle and Trailer inspection sheets | Page 2 - MrExcel

    www.mrexcel.com/board/threads/vehicle-and-trailer-inspection-sheets.1091112/page-2

    They are the dates that the trailers are due inspection. DVSA like to see weeks in advance (Usually 6 months), so the inspections are set to roll forward either 6 weekly or 10 weekly and amend if the actual inspection date is different to the one shown. I have only shown 4 weeks ahead, but would actually show as far as a year ahead.

  4. Extract City & State from string | MrExcel Message Board

    www.mrexcel.com/board/threads/extract-city-state-from-string.862140

    3254 Stadium Dr Suite B Kalamazoo MI 49008. 3446 S Linden Rd Flint MI 48507. 5122 E Lincoln Hwy Merrillville IN 46410. 555 S. Reynolds Rd Toledo OH 43615. 1037 North Michell St Cadillac MI 49601. 47178 Hayes Rd. Macomb MI 48044. After. Saginaw MI. Clinton Twp MI.

  5. Count controls in a VBA UserForm | MrExcel Message Board

    www.mrexcel.com/board/threads/count-controls-in-a-vba-userform.897822

    Hi and thanks in advance! If I want to check how many UseForms I have in my VBA, I can Use: Sub mToListUFs() Dim Obj As Object Dim X As Integer For Each Obj In ThisWorkbook.VBProject.VBComponents If Obj.Type = 3 Then Debug.Print Obj.Name X = X + 1 End If Next Obj...

  6. Pivot table subtotal on top | MrExcel Message Board

    www.mrexcel.com/board/threads/pivot-table-subtotal-on-top.591167

    112. Nov 16, 2011. #2. Figured it out! The pivot table can't be in Tabular Form. As soon as it is, the Show all Suttotals at Top does not work. In Compact Form or Outline Form, the Subtotals will show at the top. It is simple when you do it right. 0.

  7. VBA problem with FullSeriesCollection object, how to get ... -...

    www.mrexcel.com/board/threads/vba-problem-with-fullseriescollection-object-how...

    Thank you for taking the time for this reply. It seems like the Values property is an array of length "the number of points in the series". But, that is not what i actually wanted to manipulate and re-set. I wanted a string in the form that the Macro uses to set the Values property. The Macro uses this line of code:

  8. VBA Userform live search userform with listbox - MrExcel

    www.mrexcel.com/board/threads/vba-userform-live-search-userform-with-listbox...

    I've got the stage where the form changes when searching but i can't figure out how to populate the columns with the array (Within the listbox - it has 16 columns) Currently it just shows 1 column. VBA Code: Private Sub TextBox14_Change() Dim i As Long Dim arrList As Variant. ListBox1.RowSource = "" If Sheet1.Range("A" & Sheet1.Rows.Count).End ...

  9. Mixed Date Formats in the same Column | MrExcel Message Board

    www.mrexcel.com/board/threads/mixed-date-formats-in-the-same-column.1090097

    Try these 2 formulas in a cell. =DATE (2012,5,31) returns 31 May 2012. =DATE (2012,31,5) returns 5 July 201 4. In case you are wondering. 31 is (2 X 12 months = )24 + 7 (7th month is July) and the 2 years has been added to 2012 to arrive at 2014. Only if EVERY "BAD" date is found can this problem be fixed.

  10. Datagrid on VBA Userform | MrExcel Message Board

    www.mrexcel.com/board/threads/datagrid-on-vba-userform.840043

    It's pretty quick to add textboxes, what are you actually wanting to display? A simple grid on a userform would be something like: Private Sub UserForm_Initialize() Dim x As Long Dim y As Long For x = 1 To 10. For y = 1 To 5. Set Grid(x, y) = Me.Controls.Add("Forms.Textbox.1") With Grid(x, y) .Width = 50.

  11. USERFORM - Sum multiple Textboxes | MrExcel Message Board

    www.mrexcel.com/board/threads/userform-sum-multiple-textboxes.218337

    I have a userform with 6 different textboxes where the user will enter %'s. I need some code in another textbox that adds all the values up as they are entered. As a text I am using this code so after values are entered in Textbox1 & 2 they should be summed, but at present it seems to concatenate whatever is entered. (textbox7 is the "Total ...