how automatic delete data from cell

milanoke

New Member
Joined
Oct 10, 2023
Messages
13
Office Version
  1. 365
Platform
  1. Windows
Hi, i am using formula
"=LET(b;FILTER(A7:A29003;A7:A29003<>"");c;FILTER(B7:B29003;B7:B29003<>"");BYROW(CHOOSE(SEQUENCE(;7);A4;c;B4;D2;C4;b;D4;);LAMBDA(br;CONCAT(br))))"
to fill with data from others cell. I am interesting is it possible to automatic delete data from column A (A7 - A29003) and column B (B7 - B29003) "=LET(b;FILTER(A7:A29003;A7:A29003<>"");c;FILTER(B7:B29003;B7:B29003".
thanks in advance
 

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.
Hi,

Deleting data from your original data could be dangerous - as you can't ever get it back. If you need to to this, probably best to work on your original data separately and remove what you don't want.

But what you could do it look at say multiple criteria on your FILTERS like thus :

=LET(b;FILTER(A7:A29003;(A7:A29003<>"")*(A7:A29003<>"junk data")*(A7:A29003<>147))

if you have the term "junk data", and you want to remove all with 147 ... you can add more .. if the items to remove are not all unique..

Maybe it can help..

Rob
 
Upvote 0
Hi RobP, Thank you for your suggestion. i cant change my formula, this string i need for collecting data from other cells. Main manipulating data cell are in the column range A7-A29003 and B7-B29003 which fill formula =LET...
My wish is to automatically delete data from A7-A29003 and B7-B29003 from other formula or ... is ti possible?
 
Upvote 0
Formulas cannot delete hard-coded data.
And formulas can only return data to the cells they are in. They cannot affect data in other cells.
You would have to delete data manually or use VBA.
 
Upvote 0

Forum statistics

Threads
1,221,537
Messages
6,160,400
Members
451,645
Latest member
hglymph

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