Filter

B

Blue

Hi,
i have a credit control spreadsheet listing all outstanding invoices. i
have a paid column to the RHS of the sheet in which i put a tick (using
wingdings 2 font & a capital P) is it possible to have 3 macros in the
worksheet to show all paid invoices, all unpaid invoices and all paid &
unpaid invoices?
note: I cannot use a filter as the spreadsheet will not allow be to do so
 
D

Don Guillett

If you can't filter??? then a looping macro to find the cell and copy to the
next available row somewhere else.
for each c in range("ddd")
if c="whatever" then c.copy etc
 
J

Jarek Kujawa

yep, as Don wrote it's possible
but to do that we would need to know exactly how your data looks like
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top