deleting values out of a columns

Nils_Junker

Board Regular
Joined
Jun 2, 2023
Messages
80
Office Version
  1. 365
Platform
  1. Windows
Hi there,

is there a possibility to automatically delet certain values out of a column.
So in my example i got the following data:
F-Code
F000034602
F000034461
F000034603
7517701​
F000044070
F000117104
F000115754
F000115752
F000035619
F000035621
F000034003
F000033881
F000034127
F000054986
7431601​
7432001​
F000117098
F000047720
F000047719
7624301​
F000103718

SO would it be possible to delete all the values which doesn't contain an "F"
Selecting the values by their own isn't an option.
Best it would be without the use of VBA.

Looking forward to hearing from u.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
In your example, if you just want to return the values that start with an "F", you can use the FILTER function, i.e.
1707231596280.png


Formula in cell C2:
Excel Formula:
=FILTER(A2:A22,LEFT(A2:A22,1)="F")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,148
Messages
6,123,307
Members
449,095
Latest member
Chestertim

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