Offset function

Ron99

Active Member
Joined
Feb 10, 2010
Messages
340
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I need a bit of help with Offset function. The below is the source data.

MONTHTYPECLASS%
JANPAA90
JANKRA100
JANSEA80
FEBPAA70
FEBKRB80
FEBSEC65
MARPAB90
MARKRA80
MARSEC70
APRPAA60
APRKRB50

<tbody>
</tbody>

Below is the OUTPUT TABLE where I want the offset function to pick the % from the source data and put them across the blank cells.

CLASS ACLASS ACLASS ACLASS BCLASS BCLASS BCLASS CCLASS CCLASS C
JANFEBMARJANFEBMARJANFEBMAR
PA
KR
SE

<tbody>
</tbody>

Thanks,
Ron..
 
Last edited:

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
With that layout, I'd suggest SUMIFS:

ABCDEFGHIJKLMNOP
1MONTHTYPECLASS%CLASS ACLASS ACLASS ACLASS BCLASS BCLASS BCLASS CCLASS CCLASS C
2JANPAA90JANFEBMARJANFEBMARJANFEBMAR
3JANKRA100PA907000090000
4JANSEA80KR1000800800000
5FEBPAA70SE800000006570
6FEBKRB80
7FEBSEC65
8MARPAB90
9MARKRA80
10MARSEC70
11APRPAA60
12APRKRB50

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
H3=SUMIFS($D$2:$D$12,$A$2:$A$12,H$2,$B$2:$B$12,$G3,$C$2:$C$12,RIGHT(H$1))

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,455
Messages
6,124,937
Members
449,196
Latest member
Maxkapoor

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