Excel

alliswell

Board Regular
Joined
Mar 16, 2020
Messages
190
Office Version
  1. 2007
Platform
  1. Windows
  2. Mobile
statement.xlsx
ABCDEFGHIJ
1DateNameBalancejimDateBalance346231
201/04/2020George20016/04/20203464520
301/04/2020George350#N/A#N/Aaman#N/A
401/04/2020Samuel950#N/A#N/A63#N/A
503/04/2020Tim500#N/A#N/A21#N/A
603/04/2020John650#N/A#N/Aasdf#N/A
704/04/2020John235#N/A#N/A#N/A
805/04/2020George790#N/A#N/A#N/A
905/04/2020George655#N/A#N/A#N/A#N/A
1005/04/2020George150#N/A#N/A#N/A
1108/04/2020Tim222#N/A#N/A#N/A
1208/04/2020Tim315#N/A#N/A#N/A
1310/04/2020John575#N/A#N/A#N/A
1410/04/2020John524#N/A#N/A#N/A
1510/04/2020Samuel199#N/A#N/A#N/A
1610/04/2020Samuel165#N/A#N/A#N/A
1714/04/2020Samuel65#N/A#N/A#N/A
1815/04/2020Chris112#N/A#N/A#N/A
1916/04/2020George455#N/A#N/A#N/A
2016/04/2020Jim346#N/A#N/A#N/A
2118/04/2020Tom990#N/A#N/A#N/A
2220/04/2020George915#N/A#N/A#N/A
2320/04/2020George392#N/A#N/A#N/A
2421/04/2020John211#N/A#N/A#N/A
2522/04/2020Sam119#N/A#N/A#N/A
Sheet1
Cell Formulas
RangeFormula
G1G1=SUMIF(F:F,"<>#N/A")
I1I1=COUNTIF(B:B,D1)
E2:E25E2=INDEX(A:A,$J2)
F2:F25F2=INDEX(C:C,$J2)
G9G9=SUM(F2:F9)
J2:J25J2=MATCH($D$1,OFFSET($B$1,J1,0,1000,1),0)+J1
Press CTRL+SHIFT+ENTER to enter array formulas.
Named Ranges
NameRefers ToCells
_FilterDatabase=Sheet1!$A$1:$H$25E2:E25


i want to get rid of #N/A from column E, F, J. it must be blank till any value.
 

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.
Wrap all your formulas with the IFERROR function
Excel Formula:
=IFERROR(your_formula,"")
 
Upvote 0
Another option, in J2
Excel Formula:
=IFERROR(MATCH($D$1,OFFSET($B$1,J1,0,1000,1),0)+J1,"")
and then in E2
Excel Formula:
=IF(J2="","",INDEX(A:A,$J2))
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,195
Members
449,072
Latest member
DW Draft

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