Data Filter

MikeyZ

Well-known Member
Joined
Mar 14, 2002
Messages
553
Is there a way to use the Data Filter or whatever, when you've used the Strikeout feature in a cell?


Otherwise I will have to resort to sorting by Colors.
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
You could use this UDF:

Code:
Function Struckthrough(Cell As Range)
    Struckthrough = Cell.Font.Strikethrough
End Function

in a cell like:

=Struckthrough(A1)

and filter that column for TRUE.
 
Upvote 0
Press Alt+F11 to go to the Visual Basic Editor. Click your workbook in the Project window and choose Insert|Module from the menu. Copy my function from the Board and paste it into the window on the right. Close the VBE and try it out.
 
Upvote 0
I've decided to color code. It will filter better.
I failed to tell you that the array with the strickouts is from A1:E200.

Thanks as always for your help.

Mike
 
Upvote 0

Forum statistics

Threads
1,224,576
Messages
6,179,639
Members
452,935
Latest member
mm1t1

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