Wacky IF Structire

N

nevi

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


On to business, though. On the Daily Tracker sheet, my screener list
off every single ticket that he deals with. Column A is the ticke
number, B is the reps name, C is the category, D is a CB indicator,
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 invali
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 o
the Daily Tracker sheet is valid, it is putting the word "FALSE" int
A, B, and C. So, lets say for example that row 4 and 5 were invalid,
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 mov
onto the next so it will not give me those "FALSE" lines.

I posted this in the misc thread as well, but no such luck, thought I'
try it in here as well.

:)

Thanx for all the help!!
 
M

Mallycat

I think your problem is that you have only provided an option in the IF
statement for a TRUE outcome - you have not specified what to do for a
FALSE outcome

the correct syntax is =if(condition,reponse if true, response if
false)

Try this =IF('Daily Tracker'!E4:E1000="No",'Daily
Tracker'!A4:A1000*,""*)

this will leave a set of blank lines instead of false. If you want to
skip the lines alltogher, you could try sorting (not sure what that
will do) or else you will need VBA

Matt
 
D

daddylonglegs

You can add an argument for when the condition is FALSE, make this
blank, i.e. "". BTW, aren't you looking at a single cell for each line
Try

=IF('Daily Tracker'!E4="No",'Daily Tracker'!A4,"")

and similar for the other formula
 
N

nevi

Okay, so maybe it is the whole formula that I need to change.

On that Daily Tracker sheet there are anywhere from approx 700 - 90
entries daily. 350 - 500 of those will end up on the Invalid sheet
What I am hoping to deo is get them as a single list with out all th
other stuff inbetween.

So, if I were to follow your advice, then I would end up with somethin
like:

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

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



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



Ticket # -- Rep's Name -- Description


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


So on and so forth. What I would like to have is:


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


Much easier to read, count, sort, analuse, etc.

If there is no way to do it, thogugh, I will bow to your expertise an
understand.

Thanx again for all the help!
 
M

Mallycat

I'm not sure the exact structure of your spreadsheet, however you coul
try using VIEW\CUSTOM VIEWS

Select your main data page
Create a view titled "All Info" or similar
Now make the main sheet look like your summary sheet by
1 set up an Auto Filter to hide the rows that you don't want to see
2 hide the columns that you don't want to see
Create a new view titled "summary"

You can now toggle between the 2

Mat
 

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