Prev: Worksheets
Next: Sorting failure
From: RoadKill on 23 Feb 2010 18:49 Hello, I would like to have a list of items that meet a certain criteria displayed on a separate area of my spreadsheet. To elaborate, if anyone in cells E6:E26="Qualified", then the contents of Cells C6:C26 should be listed in C30:C50. And obviously if they are not Qualified, they would not be listed in C30:C50. Thanks for your help.
From: Fred Smith on 23 Feb 2010 19:29 In C30, use something like: =if(e6="qualified",c6,"") and copy down Regards, Fred "RoadKill" <RoadKill(a)discussions.microsoft.com> wrote in message news:638F1DC3-C4D1-4AC4-94E3-9A7AEEC024F4(a)microsoft.com... > Hello, > > I would like to have a list of items that meet a certain criteria > displayed > on a separate area of my spreadsheet. > > To elaborate, if anyone in cells E6:E26="Qualified", then the contents of > Cells C6:C26 should be listed in C30:C50. And obviously if they are not > Qualified, they would not be listed in C30:C50. > > Thanks for your help.
From: RoadKill on 24 Feb 2010 15:03 What I would like though is if the cell does not qualify, it should be left out of the results instead of giving a blank cell. Thanks "Fred Smith" wrote: > In C30, use something like: > =if(e6="qualified",c6,"") > and copy down > > Regards, > Fred > > "RoadKill" <RoadKill(a)discussions.microsoft.com> wrote in message > news:638F1DC3-C4D1-4AC4-94E3-9A7AEEC024F4(a)microsoft.com... > > Hello, > > > > I would like to have a list of items that meet a certain criteria > > displayed > > on a separate area of my spreadsheet. > > > > To elaborate, if anyone in cells E6:E26="Qualified", then the contents of > > Cells C6:C26 should be listed in C30:C50. And obviously if they are not > > Qualified, they would not be listed in C30:C50. > > > > Thanks for your help. > > . >
From: Fred Smith on 24 Feb 2010 22:35 You'll need to explain what you mean by "left out of the results" because something has to be specified if the if statement is not true (or Excel assumes FALSE which I'm sure you don't want). Regards, Fred "RoadKill" <RoadKill(a)discussions.microsoft.com> wrote in message news:30604D71-EA0E-43BD-85C8-C890CEF8A583(a)microsoft.com... > What I would like though is if the cell does not qualify, it should be > left > out of the results instead of giving a blank cell. > > Thanks > > "Fred Smith" wrote: > >> In C30, use something like: >> =if(e6="qualified",c6,"") >> and copy down >> >> Regards, >> Fred >> >> "RoadKill" <RoadKill(a)discussions.microsoft.com> wrote in message >> news:638F1DC3-C4D1-4AC4-94E3-9A7AEEC024F4(a)microsoft.com... >> > Hello, >> > >> > I would like to have a list of items that meet a certain criteria >> > displayed >> > on a separate area of my spreadsheet. >> > >> > To elaborate, if anyone in cells E6:E26="Qualified", then the contents >> > of >> > Cells C6:C26 should be listed in C30:C50. And obviously if they are not >> > Qualified, they would not be listed in C30:C50. >> > >> > Thanks for your help. >> >> . >>
|
Pages: 1 Prev: Worksheets Next: Sorting failure |