|
|
To advertise on these forums, e-mail us. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Excel formula help needed.
I currently use this formula
=IF(A1="","",IF(A1="end","",MATCH("?*",INDEX(A:A,1+MATCH(B1,A:A,0)):A$1048576,0))) to get this result. Excel 2010
Sheet1 But what i need is for it to be modified to ignore blank spaces so i can get this result. Excel 2010
Sheet1
__________________
One Drive "If the corporates are treating you poorly , just go elsewhere." "If they need you , they will soon find out." "If you need them , you will soon find out." --moeee _______________________________________________ |
#2
|
|||
|
|||
I hacked at your code and got the following, which appears to work:
Code:
|
#3
|
|||
|
|||
Got to love those guys on the MrExcel forum.
=IF(F1="","",COUNTA(G1:G$13)-SUM(H2:H$13)) Thamks for the help walkermac
__________________
One Drive "If the corporates are treating you poorly , just go elsewhere." "If they need you , they will soon find out." "If you need them , you will soon find out." --moeee _______________________________________________ |
#4
|
|||
|
|||
Sorry, both those formulas still count the space because it has a formula in it.
__________________
One Drive "If the corporates are treating you poorly , just go elsewhere." "If they need you , they will soon find out." "If you need them , you will soon find out." --moeee _______________________________________________ |
#5
|
|||
|
|||
They came up with a similar code to your, just more compact.
=IF(F1="","",COUNTIF(G1:G$13,"?*")-SUM(H2:H$13))
__________________
One Drive "If the corporates are treating you poorly , just go elsewhere." "If they need you , they will soon find out." "If you need them , you will soon find out." --moeee _______________________________________________ |
Thread Tools | Search this Thread |
Display Modes | |
|
|