How to create detail invoice from data rows

heryx

New member
Joined
Sep 10, 2015
Messages
7
Reaction score
0
Points
0
Hi :help:


I need help to create detail invoice from data rows below :
What formula to get data (A1:C5) in cell A9,A10,A11....


Thanks


A B C
1 Invoice No Item No Item Desc
2 PSI0001 STBX0001 Item Desc 0001
3 PSI0001 STBX0002 Item Desc 0002
4 PSI0002 STBX0003 Item Desc 0003
5 PSI0002 STBX0004 Item Desc 0004
6 .
7
8 Invoice No
9 PSI0001
10 STBX0001
11 STBX0002
12 PSI0002
13 STBX0003
14 STBX0004
15 .
 
What formula to get data (A1:C5) in cell A9,A10,A11....
Please upload your example files with the data and desired results.
The faster we help you
 
Try this ARRAY formula (for all column range)
Code:
=IFERROR(INDEX($B$2:$B$18;SMALL(IF($E$1=A2:A18;ROW(B2:B18)-1;"");ROW()-1));"")
see attach example
 

Attachments

  • heryx-navic.xlsx
    11.2 KB · Views: 12
Try this ARRAY formula (for all column range)
Code:
=IFERROR(INDEX($B$2:$B$18;SMALL(IF($E$1=A2:A18;ROW(B2:B18)-1;"");ROW()-1));"")
see attach example

Hi Navic,

Thanks for ARRAY formula, actually i need to extract the unique field "Invoice Number" then the "Item No" in the same rows.

See attach file

View attachment heryx-navic.xlsx

Thanks again
 
......... in the same rows.
I guess you think the one column/multiple rows?
Try to look for a solution using VBA or you wait till you hear from someone else.
Unfortunately I can not help you for this
 
heryx, you can try Pivot Table (see attach)
 

Attachments

  • heryx-navic(1).xlsx
    14.4 KB · Views: 6
Back
Top