Update existing formula to read any cell with a value/is not blank

lichldo

Board Regular
Joined
Apr 19, 2022
Messages
65
Office Version
  1. 365
Platform
  1. MacOS
I have this formula that pull from a set of data only cells that contain a dash

=FILTER('Billing Plans'!H:I,ISNUMBER(SEARCH("-",'Billing Plans'!H:H)))

However, I want to repurpose the formula to include ALL cells in that range, not just cells with "-", and just exclude cells that are blank

Can the same formula be modified to accomplish that?
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
How about
Excel Formula:
=FILTER('Billing Plans'!H:I,'Billing Plans'!H:H<>"")
 
Upvote 0
How about
Excel Formula:
=FILTER('Billing Plans'!H:I,'Billing Plans'!H:H<>"")
Hello thank you

That gives me a #SPILL error

Maybe it would help to only read the range H4:H30 and I4:I30 on my sheet called Billing Plans?
 
Upvote 0
The error means you do not have enough empty cells below where you put the formula.
 
Upvote 0
The error means you do not have enough empty cells below where you put the formula.
I understand. the way I have this sheet structured I cannot make any more empty cells. There is enough room for the data it will pull, its just not endlessly empty in those columns. thats why i suggest maybe the formula only read the range H4:H30 and I4:I30 on my sheet called Billing Plans as thats only where data is ?
 
Upvote 0
You can changes the ranges to the rows you want, not a problem.
 
Upvote 0
You just the H:H as you posted in post#5 & similar for the H:I range H4:I30
 
Upvote 0
In that case what is your current formula?
 
Upvote 0

Forum statistics

Threads
1,215,049
Messages
6,122,864
Members
449,097
Latest member
dbomb1414

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