LookUp on a Pivot table

C

carl

My pivot table looks like this:

Count of MessageType
Time Total
93001 3
93002 1
93003 1
93004 1
93006 1
93008 1
93009 1
93011 1


I am trying find a formula that creates this table:

93001 3
93002 1
93003 1
93004 1
93005 0
93006 1
93007 0
93008 1
93009 9
93010 0
93011 1


Thank you in advance
 
R

ryguy7272

Try this:
Sub InsertMissingNum()

Range("A2").Select
Do Until ActiveCell.Value = Empty
If ActiveCell.Value = ActiveCell.Offset(-1, 0).Value + 1 Then
ActiveCell.Offset(1, 0).Select
Else
ActiveCell.EntireRow.Insert
ActiveCell.Value = ActiveCell.Offset(-1, 0).Value + 1
ActiveCell.Offset(1, 0).Select
End If
Loop

End Sub

Regards,
Ryan---
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top