Please Explain Formula

CARBOB

Well-known Member
Joined
Jun 6, 2005
Messages
1,870
Will someone, please explain what the formula in Col I does.
Excel Workbook
ABCDEFGHI
236200651540651540.3
336192913042913040.1
436182363412363410.6
Sheet1
Excel 2007
Cell Formulas
RangeFormula
C2=IF($A$1="","",MID(TEXT($B2,"000000"),1,1)+0)
C3=IF($A$1="","",MID(TEXT($B3,"000000"),1,1)+0)
C4=IF($A$1="","",MID(TEXT($B4,"000000"),1,1)+0)
D2=IF($A$1="","",MID(TEXT($B2,"000000"),2,1)+0)
D3=IF($A$1="","",MID(TEXT($B3,"000000"),2,1)+0)
D4=IF($A$1="","",MID(TEXT($B4,"000000"),2,1)+0)
E2=IF($A$1="","",MID(TEXT($B2,"000000"),3,1)+0)
E3=IF($A$1="","",MID(TEXT($B3,"000000"),3,1)+0)
E4=IF($A$1="","",MID(TEXT($B4,"000000"),3,1)+0)
F2=IF($A$1="","",MID(TEXT($B2,"000000"),4,1)+0)
F3=IF($A$1="","",MID(TEXT($B3,"000000"),4,1)+0)
F4=IF($A$1="","",MID(TEXT($B4,"000000"),4,1)+0)
G2=IF($A$1="","",MID(TEXT($B2,"000000"),5,1)+0)
G3=IF($A$1="","",MID(TEXT($B3,"000000"),5,1)+0)
G4=IF($A$1="","",MID(TEXT($B4,"000000"),5,1)+0)
H2=IF($A$1="","",MID(TEXT($B2,"000000"),6,1)+0)
H3=IF($A$1="","",MID(TEXT($B3,"000000"),6,1)+0)
H4=IF($A$1="","",MID(TEXT($B4,"000000"),6,1)+0)
I2=IF(C2="","",(MATCH(C2,C3:C1337,0)/($A3/COUNTIF(C3:C1337,C2))))
I3=IF(C3="","",(MATCH(C3,C4:C1338,0)/($A4/COUNTIF(C4:C1338,C3))))
I4=IF(C4="","",(MATCH(C4,C5:C1339,0)/($A5/COUNTIF(C5:C1339,C4))))
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
=IF(C2="","",(MATCH(C2,C3:C1337,0)/($A3/COUNTIF(C3:C1337,C2))))

If C2 is empty then stay empty, if not then find the first exact match of C2 in the cells below if and divide this by the value in A3 divided by the count instances of C2 in the column below C2.

This is then copied down
 
Upvote 0
=IF(C2="","",(MATCH(C2,C3:C1337,0)/($A3/COUNTIF(C3:C1337,C2))))

If C2 is empty then stay empty, if not then find the first exact match of C2 in the cells below if and divide this by the value in A3 divided by the count instances of C2 in the column below C2.

This is then copied down

Thank you very much!!!!
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,718
Members
452,939
Latest member
WCrawford

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