extract text and consolidate

Birdy01962

New Member
Joined
Jun 27, 2016
Messages
26
I have a list

(A1) is Job Description,
(A2) Cost items (Materials and Labour)
(A3) Qty (Items and Hours)

from this list I would like to extract all labour hours together with each Job Description into another work sheet. So far I have identified all "Lab" lines but where do I go to extract and consolidate into new sheet.

[TABLE="width: 522"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Job Description[/TD]
[TD]Material[/TD]
[TD]Quantity[/TD]
[TD][/TD]
[TD]identify "Lab"[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Site Preparation[/TD]
[TD]Skip Hire[/TD]
[TD]2[/TD]
[TD][/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]Site Preparation[/TD]
[TD]Digger/Day[/TD]
[TD]2[/TD]
[TD][/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]Site Preparation[/TD]
[TD]LABOUR - Day Rate Paul[/TD]
[TD]2[/TD]
[TD][/TD]
[TD]OK[/TD]
[/TR]
[TR]
[TD]Site Preparation[/TD]
[TD]LABOUR - Day Rate Staff[/TD]
[TD]2[/TD]
[TD][/TD]
[TD]OK[/TD]
[/TR]
[TR]
[TD]Footings[/TD]
[TD]Cement[/TD]
[TD]6[/TD]
[TD][/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]Footings[/TD]
[TD]Ballast / tonne[/TD]
[TD]3[/TD]
[TD][/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]Footings[/TD]
[TD]LABOUR - Day Rate Paul[/TD]
[TD]2[/TD]
[TD][/TD]
[TD]OK[/TD]
[/TR]
[TR]
[TD]Wall[/TD]
[TD]Brickwork / 100[/TD]
[TD]3[/TD]
[TD][/TD]
[TD]NO[/TD]
[/TR]
[TR]
[TD]Wall[/TD]
[TD]LABOUR - Day Rate Paul[/TD]
[TD]3[/TD]
[TD][/TD]
[TD]OK[/TD]
[/TR]
[TR]
[TD]Cleaning[/TD]
[TD]LABOUR - Day Rate Paul[/TD]
[TD]4[/TD]
[TD][/TD]
[TD]OK[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]What I require[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]No of Hours[/TD]
[/TR]
[TR]
[TD]Site Preparation[/TD]
[TD="colspan: 3"]LABOUR - Day Rate Paul (plus Labour - Day Rate Staff)[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]Footings[/TD]
[TD]LABOUR - Day Rate Paul[/TD]
[TD][/TD]
[TD][/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]Wall[/TD]
[TD]LABOUR - Day Rate Paul[/TD]
[TD][/TD]
[TD][/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]Cleaning[/TD]
[TD]LABOUR - Day Rate Paul[/TD]
[TD][/TD]
[TD][/TD]
[TD]4[/TD]
[/TR]
</tbody>[/TABLE]


:confused:
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Try this for Results on sheet2.
Code:
[COLOR="Navy"]Sub[/COLOR] MG22Nov50
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range, n [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Long,[/COLOR] Q [COLOR="Navy"]As[/COLOR] Variant, Ray [COLOR="Navy"]As[/COLOR] Variant
[COLOR="Navy"]Set[/COLOR] Rng = Range(Range("A2"), Range("A" & Rows.Count).End(xlUp))
[COLOR="Navy"]With[/COLOR] CreateObject("scripting.dictionary")
.CompareMode = vbTextCompare
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng
    [COLOR="Navy"]If[/COLOR] Left(Dn.Offset(, 1).Value, 6) = "LABOUR" And Dn.Value <> "" [COLOR="Navy"]Then[/COLOR]
        [COLOR="Navy"]If[/COLOR] Not .Exists(Dn.Value) [COLOR="Navy"]Then[/COLOR]
            .Add Dn.Value, Array(Dn.Value, Dn.Offset(, 1).Value, Dn.Offset(, 2).Value)
        [COLOR="Navy"]Else[/COLOR]
            Q = .Item(Dn.Value)
            [COLOR="Navy"]If[/COLOR] InStr(Q(1), Dn.Offset(, 1).Value) = 0 [COLOR="Navy"]Then[/COLOR]
                Q(1) = Q(1) & " + " & Dn.Offset(, 1).Value
            [COLOR="Navy"]End[/COLOR] If
            Q(2) = Q(2) + Dn.Offset(, 2).Value
            .Item(Dn.Value) = Q
        [COLOR="Navy"]End[/COLOR] If
   [COLOR="Navy"]End[/COLOR] If
[COLOR="Navy"]Next[/COLOR]
Ray = .items: n = .Count
[COLOR="Navy"]End[/COLOR] With
[COLOR="Navy"]With[/COLOR] Sheets("Sheet2").Range("A1")
        .Resize(, 3).Value = Array("Job", "Labour", "Qty")
        .Offset(1).Resize(n, 3).Value = Application.Transpose(Application.Transpose(Ray))
        .Resize(n + 1, 3).Columns.AutoFit
        .Resize(n + 1, 3).Borders.Weight = 2
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]With[/COLOR]
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
Thanks Mick for your help and suggestion above however when I run it produces a "run time error 13 Type mismatch" after "sheet2"....Offset(1).Resize).....

After the error "Sheet2" has the headings "Job","Labour"and "Qty" only - no Labour line items.

Can you suggest where its going wrong.

Regards Birdy01962
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,636
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top