Break-Down Data in Excel without VBA (Formula Only) -
many times, required provide type of break-down customers - example shown in attached figure.
i have table of data ("table data" - type of pivot) + customer provides official form, structure must preserved (highlighted in yellow ). basically, need separate cost details of code "a" , code "b" 2 separated sections.
customer requires me provided details each individual part (example shows part - "break-down part a)
is there anyway put a"item" "table data" code , code b ? rests can solved vlookup (price, quantity) - note: "item" non-duplicated values . thank much
number rows in breakout using =1
, =a1+1
, use formula ="b-item"&text(a1,"000")
. if want skip making counter column use ="b-item"&text(row()-1,"000")
use current row number (minus 1 or many need).
if items aren't sequentially that, still unique, recommend adding counters on original tab similar have, let find 5th or 7th b, counts previous instances of current type, , adds 1. row 6 =countif(a$1:a5,a6)+1
.
Comments
Post a Comment