View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
nevi
 
Posts: n/a
Default Wacky Little IF Structure


It never ceases to amaze me the solutions I find in these forums. I find
I;m posting about a question a week, and I have gotten some absolutely
amazing answers. If one of you who have helped me before happens to
come across this post as well, I just wanted to take a moment and say
THANX!!!!


On to business, though. On the Daily Tracker sheet, my screener lists
off every single ticket that he deals with. Column A is the ticket
number, B is the reps name, C is the category, D is a CB indicator, E
indicates if the ticket is a valid claim, and F for a description.

Now, on another work sheet I need it to list off all of the invalid
tickets, but only the ticket number, name and description.

So what I have at the moment is:


In column A, for the ticket number:
=IF('Daily Tracker'!E4:E1000="No",'Daily Tracker'!A4:A1000)

In column B, for the reps name:
=IF('Daily Tracker'!E4:E1000="No",'Daily Tracker'!B4:B1000)

In column C, for the description:
=IF('Daily Tracker'!E4:E1000="No",'Daily Tracker'!F4:F1000)


Now, this works perfectly6, except for one thing. When the ticket on
the Daily Tracker sheet is valid, it is putting the word "FALSE" into
A, B, and C. So, lets say for example that row 4 and 5 were invalid, 6
was valid and 7 was invalid. What I would end up with is:

Ticket # -- Rep's Name -- Description
Ticket # -- Rep's Name -- Description
FALSE -- FALSE -- FALSE
Ticket # -- Rep's Name -- Description


What I am looking for is a way to tell it to skip over those and move
onto the next so it will not give me those "FALSE" lines.

Thanx for all the help!!!


--
nevi
------------------------------------------------------------------------
nevi's Profile: http://www.excelforum.com/member.php...o&userid=33238
View this thread: http://www.excelforum.com/showthread...hreadid=555141